diff options
Diffstat (limited to 'tests/basic/15.in')
-rw-r--r-- | tests/basic/15.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/basic/15.in b/tests/basic/15.in new file mode 100644 index 0000000000000..1329b8c7c130c --- /dev/null +++ b/tests/basic/15.in @@ -0,0 +1,24 @@ +# In this test we test include override bug + +.include(priority = 1) "${CURDIR}/15.inc" + +section = { + value = "test"; +} + +overrided = { + value = "not-to-be-shown"; +} + +/* + BUGGED UCL: + overrided { + key = "overrided"; + } + !!! So overrided has actually rewritten the previous key + section { + value { + value = "not-to-be-shown"; + } + } +*/ |