Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / bug6887 / bar10-invalid.yang
1 module bar {
2     namespace bar;
3     prefix bar;
4
5     revision 2017-02-02;
6
7     typedef my-base-bits-type {
8         type bits {
9             bit bit-a {
10                 position 1;
11             }
12             bit bit-b;
13             bit bit-c {
14                 position 3;
15             }
16             bit bit-d {
17                 position 4;
18             }
19         }
20     }
21
22     typedef my-derived-bits-type {
23         type my-base-bits-type {
24             bit bit-b;
25             bit bit-c {
26                 position 3;
27             }
28             bit bit-d {
29                 position 4;
30             }
31         }
32     }
33 }