Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug6150 / aug-second.yang
1 module aug-second {
2
3   namespace "odl:test:bug6150:aug-second";
4   prefix "as";
5   revision 2016-11-10;
6
7   import target {
8     prefix tf;
9   }
10   import target {
11     prefix ts;
12   }
13
14   // With Bug present, this works just because tf is not involved.
15   augment "/ts:target" {
16     leaf added-leaf {
17       type string;
18     }
19   }
20
21 }