xref: /linux/scripts/kconfig/tests/choice/Kconfig (revision 3a1b9c4d8edbb7c8e89e4e6e54e18c6f73cd599f)
1# SPDX-License-Identifier: GPL-2.0
2
3choice
4	prompt "boolean choice"
5	default BOOL_CHOICE1
6
7config BOOL_CHOICE0
8	bool "choice 0"
9
10config BOOL_CHOICE1
11	bool "choice 1"
12
13endchoice
14