Binding generator v2 - Identity fix
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / uses-statement / test-identity-base.yang
1 module test-identity-base {
2     yang-version 1.1;
3
4     namespace "urn:test:identity:base";
5     prefix test-identity-base;
6
7     organization "test.type.org";
8     revision "2017-06-30";
9
10     identity test-root;
11
12     identity test-one {
13         base test-root;
14     }
15
16     identity test-two {
17         base test-root;
18     }
19
20     container base-cont {
21
22     }
23 }