Add test for statement prerequisites and materialization
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / resources / bugs / YT1434 / test-bug.yang
1 submodule test-bug {
2   yang-version 1.1;
3   belongs-to main-module {
4     prefix mm;
5   }
6
7   augment "/mm:services" {
8     container plan-notifications {
9       list subscription {
10         key name;
11         unique "service-type component-type";
12         leaf name {
13           type string;
14         }
15         leaf service-type {
16           type string;
17         }
18         leaf component-type {
19           type string;
20         }
21       }
22     }
23   }
24 }