drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git] / scripts / kconfig / tests / rand_nested_choice / Kconfig
blob8350de7f732bda328bdac3ed2a7f885c1e8701df
1 # SPDX-License-Identifier: GPL-2.0
3 choice
4         prompt "choice"
6 config A
7         bool "A"
9 config B
10         bool "B"
12 if B
13 choice
14         prompt "sub choice"
16 config C
17         bool "C"
19 config D
20         bool "D"
22 if D
23 choice
24         prompt "subsub choice"
26 config E
27         bool "E"
29 endchoice
30 endif # D
32 endchoice
33 endif # B
35 endchoice