88625eac12095164376d849a321bd0485f7e3626
[smo/teiv.git] /
1 module augment-intosub-augmenting-module {
2
3     namespace "test:augment-intosub-augmenting-module";
4     prefix augmenting;
5
6     revision "2020-12-10";
7
8         description
9         "Copyright (C) 2024 Ericsson
10         Modifications Copyright (C) 2024 OpenInfra Foundation Europe";
11
12         import augment-intosub-module {
13                 prefix module;
14         }
15
16         augment "/module:cont1" {
17                 leaf leaf11 {
18                         type string;
19                 }
20         }
21
22         augment "/module:cont2" {               // this sits in the submodule
23                 leaf leaf12 {
24                         type string;
25                 }
26         }
27
28 }