Bug 2366 - Effective statements impl for new yang parser.
[yangtools.git] / yang / yang-parser-impl / src / test / resources / stmt-test / effective-build / aug-root.yang
1 module aug-root {
2         namespace root;
3         prefix root;
4
5         import augmented {
6                 prefix aug;
7         }
8
9         augment "aug:aug-parent1/aug:aug-parent2/aug:cont-target" {
10                 container cont-added1 {
11                         list list1 {
12                         }
13                 }
14
15                 container cont-added2 {
16                         anyxml axml;
17                 }
18
19                 uses aug:grp;
20         }
21 }