blob: 80ee1108abeec6dce3137cb61e899fd9ce67f00a [file] [log] [blame]
Bharat saraswalb1170bd2016-07-14 13:26:18 +05301module test {
2 namespace "xpath:intra:single";
3 prefix test ;
4
5 import test2 {
6 prefix test2;
7 }
8
9 organization "";
10 contact "";
11
12 description
13 "Defines basic service types for L3VPN service.";
14
15 revision "2015-12-16" {
16 reference "";
17 }
18
19 container cont2 {
20 leaf a {
21 type int32;
22 }
23 uses test2:group1;
24 }
25
26 augment /cont2/group1/cont1/cont2 {
27 leaf a {
28 type int32;
29 }
30 }
31}
32