Bug 6173: Allow refine statement to have no substatements
[yangtools.git] / yang / yang-parser-impl / src / test / resources / substatement-validator / empty-element / empty.yang
1 module empty {
2     namespace "root-module";
3     prefix empty;
4
5     container root-container {
6         uses grp-1 {
7             refine container-from-grouping/list-in-container {
8             }
9         }
10     }
11
12     grouping grp-1 {
13         container container-from-grouping {
14             list list-in-container {
15                 description "original description";
16             }
17         }
18     }
19 }