6a19cbc59654c40938b073854496d16946c75cc7
[yangtools.git] / yang / yang-parser-impl / src / test / resources / deviation-resolution-test / deviation-not-supported / root.yang
1 module root {
2     namespace root;
3     prefix root;
4
5     import imported {
6         prefix imp;
7         revision-date 2017-01-20;
8     }
9
10     revision 2017-01-20;
11
12     deviation "/imp:my-cont-a/imp:my-leaf-a1" {
13         deviate not-supported;
14     }
15
16     deviation "/imp:my-cont-a/imp:my-leaf-a2" {
17         deviate not-supported;
18     }
19
20     deviation "/imp:my-cont-b" {
21         deviate not-supported;
22     }
23
24     deviation "/imp:my-cont-c/imp:my-leaf-c3" {
25         deviate not-supported;
26     }
27 }