summaryrefslogtreecommitdiff
path: root/tests/Kdeploop10
blob: 2e616ae6b6fbee1fd31157ec16648bc9e8a3320e (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
43
44
45
46
47
48
config A
    bool
    depends on B

config B
    bool
    depends on C = 7

config C
    int
    range D 8

config D
    int
    default 3 if E
    default 8

config E
    bool

config F
    bool
    select E if G

config G
    bool
    depends on H

choice
    bool "choice"

config H
    bool "H"
    depends on I

endchoice

choice
    bool "choice" if J

config I
    bool "I"

endchoice

config J
    bool
    depends on A