Bug 5335: augmenting a mandatory node on a presence container
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug5335 / incorrect / case-3 / bar.yang
1 module bar {
2     namespace "bar";
3     prefix bar;
4     yang-version 1;
5
6     import foo { prefix foo; revision-date 2016-03-04; }
7
8     revision "2016-03-04" {
9         description "test";
10     }
11
12     augment "/foo:root/foo:presence-container" {
13         container non-presence-container {
14         }
15     }
16 }