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