YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rfc7950 / action-stmt / baz-invalid.yang
1 module baz-invalid {
2     namespace baz-namespace;
3     prefix baz-prefix;
4     yang-version 1.1;
5
6     revision 2016-12-13;
7
8     container my-container {
9         choice my-choice {
10             case first {
11                 leaf first-leaf {
12                     type string;
13                 }
14             }
15             case second {
16                 uses grouping-with-action;
17             }
18         }
19     }
20
21     grouping grouping-with-action {
22         action action-in-grouping {
23
24         }
25     }
26 }