blob: 40b23860df36b8102fe3b6006418fcdd09928789 [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 }
26
27 augment /cont2/cont3/cont4 {
28 leaf a {
29 type int32;
30 }
31 }
32}
33