Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / action-stmt / bar-invalid.yang
1 module bar-invalid {
2     namespace bar-namespace;
3     prefix bar-prefix;
4     yang-version 1.1;
5
6     revision 2016-12-13;
7
8     list my-unkeyed-list {
9         container my-container {
10             list my-keyed-list {
11                 key key-leaf;
12
13                 leaf key-leaf {
14                     type string;
15                 }
16
17                 action my-action {
18
19                 }
20             }
21         }
22     }
23 }