Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / negative-scenario / duplicity / augment0.yang
1 module augment0 {
2     yang-version 1;
3     namespace "urn:simple.augment0.demo";
4     prefix "a0";
5
6     revision "2014-06-02";
7
8     container foo {
9         description "foo container";
10         container bar {
11             leaf id {
12                 type int8;
13             }
14             typedef int-ext {
15                 type int8 {
16                     range "5..10";
17                 }
18             }
19             choice choice-ext {
20                 leaf delta {
21                     type int8;
22                 }
23             }
24         }
25     }
26
27 }