Bug 8307: Add the option for activating deviation statements
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug8307 / baz.yang
1 module baz {
2     namespace baz-ns;
3     prefix baz-prefix;
4
5     import foo {
6         prefix foo;
7         revision-date 2017-05-16;
8     }
9
10     import bar {
11         prefix bar;
12         revision-date 2017-05-16;
13     }
14
15     revision 2017-05-16;
16
17     deviation "/foo:my-foo-cont-b" {
18         deviate not-supported;
19     }
20
21     deviation "/bar:my-bar-cont-a" {
22         deviate not-supported;
23     }
24
25     container my-baz-cont {}
26 }