summaryrefslogtreecommitdiff
path: root/tests/Klocation_included
blob: 674116a9deeafe6ceabb1c3b36f40bc828b45185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
menuconfig A
    bool "A"
menuconfig A
    bool "A"
menu "menu 2"
config M
    def_bool !(n || (n || A = n))
    default !A if y
    default y if !A
config S
    bool
    select A if NOT_DEFINED = y
    select E if A
    imply A
    imply E if A
endmenu
choice
    bool "C"
config N
    bool "N"
config O
    bool "O"
endchoice
choice B
    bool "B"

config B1
    tristate "B1"

config B2
    tristate "B2"

endchoice

if !(NOT_DEFINED != A)
comment "comment 2"
endif

menu "visible if menu"
    visible if A
    visible if NOT_DEFINED
endmenu