Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / negative-scenario / duplicity / augment1.yang
1 module augment1 {
2     yang-version 1;
3     namespace "urn:simple.augment1.demo";
4     prefix "a1";
5
6
7     import augment0 {
8         prefix "a0";
9     }
10
11     revision "2014-06-02";
12
13     augment "/a0:foo/a0:bar" {
14         leaf id {
15             type string;
16         }
17     }
18
19     augment "/a0:foo/a0:bar" {
20         leaf id {
21             type string;
22         }
23     }
24
25 }