summaryrefslogtreecommitdiff
path: root/tests/Klocation
blob: e2e0c7c4b3288bb9fc591f6865762b84bba65f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Defined and referenced in multiple locations
config A
    bool
menu "foo"
    depends on A
    visible if A && NOT_DEFINED
choice B
    bool "b"
config C
    bool "c"
config D
    bool "d"
endchoice
config A
    def_bool NOT_DEFINED
comment "foo"
config E
    bool "E" if A
    depends on A
endmenu