Tests for YangInstanceIdentifier key value serialization
[yangtools.git] / codec / yang-data-codec-gson / src / test / resources / yt1473 / bar.yang
1 module bar {
2   namespace barns;
3   prefix bar;
4
5   import foo { prefix foo; }
6
7   identity two {
8     base foo:one;
9   }
10
11   leaf foo {
12     type identityref {
13       base foo:one;
14     }
15   }
16
17   leaf bar {
18     type instance-identifier;
19   }
20 }