xref: /freebsd/contrib/libucl/tests/basic/18.in (revision b0b1dbdd)
1defaults {
2	key = "val"
3	foo = "bar"
4	many = "values here"
5}
6
7mything {
8	.inherit "defaults"
9	key = "newval"
10	key = "newval1"
11}
12mything {
13	.inherit "mything"
14	key = "newval"
15}
16.priority 3
17
18defaults {
19	key = "val1"
20	foo = "bar1"
21	many = "values here"
22}
23mything1 {
24	key2 = "wtf??"
25	.priority 1
26	.inherit "defaults"
27	.inherit "mything"
28	.inherit "mything1"
29	key1 = "newval"
30	key2 = "OMG" # low priority
31}
32