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