diff options
Diffstat (limited to 'tests/Kundef')
| -rw-r--r-- | tests/Kundef | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/Kundef b/tests/Kundef new file mode 100644 index 0000000..fae521a --- /dev/null +++ b/tests/Kundef @@ -0,0 +1,23 @@ +config DEF + bool + +config BOOL + bool "foo" if DEF || !UNDEF_1 + default UNDEF_2 + +config INT + int + range UNDEF_2 8 + default 10 + range 5 15 + +config HEX + hex + range 0x123 0X456 + default 0x200 + +menu "menu" + depends on UNDEF_1 + visible if UNDEF_3 + +endmenu |
