faeb5b34f82b067e7b353767dbc2837eaeff477a
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug6150 / aug-first.yang
1 module aug-first {
2
3   namespace "odl:test:bug6150:aug-first";
4   prefix "af";
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 fails because tf got overwritten.
15   augment "/tf:target" {
16     leaf added-leaf {
17       type string;
18     }
19   }
20
21 }