26ec3c8978eb47fea6c0e5d44f5befdb9f2794af
[yangtools.git] / yang / yang-parser-impl / src / test / resources / stmt-test / augments / multiple-augment-imported.yang
1 module multiple-augment-imported {
2
3     namespace "multiple-augment-imported";
4     prefix imp;
5
6
7     container root-container {
8         uses grp1 {
9             augment container-from-grp1/sub-container-from-grp1 {
10                 container container-in-uses-augment {
11                 }
12             }
13         }
14     }
15
16     grouping grp1 {
17         container container-from-grp1 {
18             container sub-container-from-grp1 {
19                 uses grp2 {
20                     augment container-from-grp2/sub-container-from-grp2 {
21                         container augmented-container-in-uses-grp2;
22                     }
23                 }
24             }
25         }
26     }
27
28     grouping grp2 {
29         container container-from-grp2 {
30             container sub-container-from-grp2 {
31             }
32         }
33         uses grp3;
34     }
35
36     grouping grp3 {
37         container container-from-grp3 {
38         }
39     }
40
41     augment /root-container/container-from-grp1/sub-container-from-grp1/container-in-uses-augment {
42         container sub-container-from-augment2 {
43         }
44     }
45
46     grouping grp-from-import {
47         container container-from-grp-from-import {
48
49         }
50     }
51 }