perf tools: Don't clone maps from parent when synthesizing forks
[linux/fpc-iii.git] / scripts / kconfig / tests / rand_nested_choice / Kconfig
blobc591d512929fd275ee92a52b4ffbf1ddd3c86758
1 choice
2         prompt "choice"
4 config A
5         bool "A"
7 config B
8         bool "B"
10 if B
11 choice
12         prompt "sub choice"
14 config C
15         bool "C"
17 config D
18         bool "D"
20 if D
21 choice
22         prompt "subsub choice"
24 config E
25         bool "E"
27 endchoice
28 endif # D
30 endchoice
31 endif # B
33 endchoice