Fix if-feature propagation for implicit case statements
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1431 / bar.yang
1 module bar {
2   namespace bar;
3   prefix bar;
4
5   feature bar;
6
7   container foo;
8
9   augment /foo {
10     choice bar {
11       leaf baz {
12         if-feature bar;
13         type string;
14       }
15     }
16   }
17 }