diff --git a/bad_selects.Kconfig b/bad_selects.Kconfig new file mode 100644 index 000000000000..989fc4e1fc17 --- /dev/null +++ b/bad_selects.Kconfig @@ -0,0 +1,11 @@ +config A + bool "CONFIG A" + +config B + bool "CONFIG B" + depends on !A + +config C + bool "CONFIG C" + depends on A + select B