freebsd-dev/contrib/libucl/tests/basic/15.in
2015-10-27 21:24:09 +00:00

25 lines
354 B
Plaintext

# In this test we test include override bug
.include(priority = 1) "${CURDIR}/15.inc"
section = {
value = "test";
}
overrided = {
value = "not-to-be-shown";
}
/*
BUGGED UCL:
overrided {
key = "overrided";
}
!!! So overrided has actually rewritten the previous key
section {
value {
value = "not-to-be-shown";
}
}
*/