b99972caa33deb96a51ae55979dbf9622f400e94
[smo/teiv.git] /
1 module augmenting-module {
2
3         namespace "test:augmenting-module";
4         prefix "this";
5         revision 2024-01-30;
6
7         description
8         "Copyright (C) 2024 Ericsson
9         Modifications Copyright (C) 2024 OpenInfra Foundation Europe";
10
11         import base-module {
12                 prefix base;
13         }
14
15         import other-module {
16                 prefix other;
17         }
18
19         augment "/base:cont1" {
20                 leaf leaf12 {
21                         type int32;
22                 }
23         }
24
25         augment "/other:cont5" {
26                 leaf leaf52 {
27                         type int32;
28                 }
29         }
30 }