blob: a19ba356b9b9f2a0346b07730caef9e9f3a13a38 [file] [log] [blame]
Bharat saraswalb1170bd2016-07-14 13:26:18 +05301submodule test1 {
2
3 belongs-to test {
4 prefix test;
5 }
6
7 import test2 {
8 prefix test2;
9 }
10 organization "";
11 contact "";
12
13 description
14 "Defines basic service types for L3VPN service.";
15
16 revision "2015-12-16" {
17 reference "";
18 }
19
20 container cont2 {
21 leaf leaf1 {
22 type int32;
23 }
24 container cont3 {
25 leaf leaf1 {
26 type int32;
27 }
28 }
29 }
30
31 augment /cont2/cont3 {
32 container cont4 {
33 leaf leaf1 {
34 type int32;
35 }
36 }
37 }
38
39 augment /test2:cont1/test2:cont2 {
40 leaf a {
41 type int32;
42 }
43 container cont2 {
44 leaf leaf1 {
45 type int32;
46 }
47 }
48 }
49}
50