Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug7038 / yang10 / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4     yang-version 1;
5
6     container root {
7         leaf my-leafref {
8             type leafref {
9                 path "../target";
10                 require-instance false;
11             }
12         }
13         leaf target {
14             type string;
15         }
16     }
17 }