aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/kconfig/tests/rand_nested_choice/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/tests/rand_nested_choice/Kconfig')
-rw-r--r--scripts/kconfig/tests/rand_nested_choice/Kconfig35
1 files changed, 0 insertions, 35 deletions
diff --git a/scripts/kconfig/tests/rand_nested_choice/Kconfig b/scripts/kconfig/tests/rand_nested_choice/Kconfig
deleted file mode 100644
index 8350de7f732b..000000000000
--- a/scripts/kconfig/tests/rand_nested_choice/Kconfig
+++ /dev/null
@@ -1,35 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0
-
-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