Fix augment/deviate mechanics
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1485 / leaf / foo.yang
1 module foo {
2   namespace "urn:foo";
3   prefix "foo";
4
5   feature foo-feature;
6
7   container foo {
8     leaf foo-leaf {
9       if-feature foo-feature;
10       type string;
11     }
12   }
13 }