Linux-libre 5.3.12-gnu
[librecmc/linux-libre.git] / scripts / kconfig / tests / rand_nested_choice / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2
3 choice
4         prompt "choice"
5
6 config A
7         bool "A"
8
9 config B
10         bool "B"
11
12 if B
13 choice
14         prompt "sub choice"
15
16 config C
17         bool "C"
18
19 config D
20         bool "D"
21
22 if D
23 choice
24         prompt "subsub choice"
25
26 config E
27         bool "E"
28
29 endchoice
30 endif # D
31
32 endchoice
33 endif # B
34
35 endchoice