Populate parser/ hierarchy
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT983 / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     revision "2019-04-30";
6
7     extension ext;
8
9     leaf foo {
10         type enumeration {
11             enum "10" {
12                 foo:ext;
13             }
14         }
15     }
16 }