xref: /freebsd/contrib/libucl/tests/basic/15.in (revision 59c8e88e72633afbc47a4ace0d2170d00d51f7dc)
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