Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / leafref-stmt / foo10.yang
1 module foo10 {
2     namespace foo10-ns;
3     prefix foo10-prfx;
4     yang-version 1;
5
6     revision 2016-12-20;
7
8     leaf leafref-a {
9         type leafref {
10             path "../leaf-a";
11             require-instance false;
12         }
13     }
14
15     leaf leaf-a {
16         type string;
17     }
18 }