BUG-4295: instantiate MERGE operations lazily
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug-4295 / foo.yang
1 module foo {
2     namespace "foo";
3     prefix foo;
4
5     container root {
6         container sub-root {
7             list outer-list {
8                 key "o-id";
9                 leaf o-id {
10                     type string;
11                 }
12                 list inner-list {
13                     key "i-id";
14                     leaf i-id {
15                         type string;
16                     }
17                     leaf i {
18                         type string;
19                     }
20                 }
21                 leaf o {
22                     type string;
23                 }
24             }
25         }
26     }
27 }