Recognize 'choice' in 'choice' with YANG 1.1
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1410 / foo.yang
1 module foo {
2   namespace foo;
3   prefix foo;
4
5   choice one {
6     // RFC6020: not allowed
7     choice two;
8   }
9 }
10