nt9856x/BSP/linux-kernel/scripts/kconfig/tests/rand_nested_choice/Kconfig
2023-03-28 15:07:53 +08:00

34 lines
248 B
Plaintext

choice
prompt "choice"
config A
bool "A"
config B
bool "B"
if B
choice
prompt "sub choice"
config C
bool "C"
config D
bool "D"
if D
choice
prompt "subsub choice"
config E
bool "E"
endchoice
endif # D
endchoice
endif # B
endchoice