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