blob: 4b15645d68803dc46306e525093a50ccd4500354 [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 include test1;
10
11 organization "";
12 contact "";
13
14 description
15 "Defines basic service types for L3VPN service.";
16
17 revision "2015-12-16" {
18 reference "";
19 }
20
21 augment /test2:cont1/test2:cont2/cont2 {
22 leaf a {
23 type int32;
24 }
25 uses group1;
26 }
27
28 augment /test2:cont1/test2:cont2/cont2/group1/cont1/cont2 {
29 leaf a {
30 type int32;
31 }
32 }
33}
34