Augments should get disabled if target is unsupported
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / YT1370 / foo.yang
1 module foo {
2   prefix foo;
3   namespace foo;
4
5   feature foo;
6
7   container foo {
8     if-feature foo;
9   }
10
11   augment /foo {
12     container bar;
13   }
14 }