xref: /src/contrib/libucl/tests/basic/15.in (revision 0d1ba6657e90b1f9b76e1c393b1555d6cf6cf260)
1# In this test we test include override bug
2
3.include(priority = 1) "${CURDIR}/15.inc"
4
5section = {
6	value = "test";
7}
8
9overrided = {
10	value = "not-to-be-shown";
11}
12
13/*
14 BUGGED UCL:
15 overrided {
16	    key = "overrided";
17 }
18 !!! So overrided has actually rewritten the previous key
19 section {
20	    value {
21			        value = "not-to-be-shown";
22	    }
23 }
24*/
25