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