Merge tag 'kbuild-v6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
[sfrench/cifs-2.6.git] / scripts / kconfig / tests / choice_randomize / Kconfig
1 choice
2         prompt "choose A or B"
3
4 config A
5         bool "A"
6
7 config B
8         bool "B"
9
10 endchoice
11
12 choice
13         prompt "choose X or Y"
14         depends on B
15
16 config X
17         bool "X"
18
19 config Y
20         bool "Y"
21
22 endchoice