Bug 8307: Add the option for activating deviation statements
[yangtools.git] / yang / yang-parser-impl / src / test / resources / deviation-resolution-test / deviation-not-supported / imported.yang
1 module imported {
2     namespace imp;
3     prefix imp;
4
5     revision 2017-01-20;
6
7     container my-cont-a {
8         leaf my-leaf-a1 {
9             type int8;
10         }
11
12         leaf my-leaf-a2 {
13             type int16;
14         }
15
16         leaf my-leaf-a3 {
17             type int32;
18         }
19     }
20
21     container my-cont-b {
22         leaf my-leaf-b1 {
23             type int8;
24         }
25
26         leaf my-leaf-b2 {
27             type int16;
28         }
29
30         leaf my-leaf-b3 {
31             type int32;
32         }
33     }
34
35     container my-cont-c {
36         leaf my-leaf-c1 {
37             type int8;
38         }
39
40         leaf my-leaf-c2 {
41             type int16;
42         }
43
44         leaf my-leaf-c3 {
45             type int32;
46         }
47     }
48 }