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