Do not enforce augments in unsupported nodes
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1393 / xyzzy.yang
1 module xyzzy {
2   namespace xyzzy;
3   prefix xyzzy;
4
5   feature bar;
6
7   grouping foo {
8     container foo;
9   }
10
11   container bar {
12     if-feature bar;
13
14     uses foo {
15       augment foo {
16         leaf foo {
17           type string;
18         }
19       }
20     }
21   }
22 }