]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libucl/tests/basic/15.in
Update libucl to latest git snapshot (20151027)
[FreeBSD/FreeBSD.git] / contrib / libucl / tests / basic / 15.in
1 # In this test we test include override bug
2
3 .include(priority = 1) "${CURDIR}/15.inc"
4
5 section = {
6         value = "test";
7 }
8
9 overrided = {
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 */