blob: 01aa34ec1923bcb4fbcb9ac8398f0aa47df13888 [file] [log] [blame]
Bharat saraswald14cbe82016-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
Bharat saraswalaf413b82016-07-14 15:18:20 +053026 augment /cont2/cont1/cont2 {
Bharat saraswald14cbe82016-07-14 13:26:18 +053027 leaf a {
28 type int32;
29 }
30 }
31}
32