Added more descriptive parsing exceptions.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-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     import augment0 {
7         prefix "a0";
8     }
9
10     augment "/a0:foo/a0:bar" {
11         leaf id {
12             type string;
13         }
14     }
15
16 }