Merge branch 'master' of ../controller
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / bug8083 / yang / baz.yang
1 module baz {
2
3     namespace baz-ns;
4     prefix baz-prefix;
5
6     container top-cont {
7         list keyed-list {
8             key empty-key-leaf;
9
10             leaf empty-key-leaf {
11                 type empty;
12             }
13
14             leaf regular-leaf {
15                 type int32;
16             }
17         }
18
19         leaf iid-leaf {
20             type instance-identifier;
21         }
22     }
23 }