Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug5335 / incorrect / case-2 / 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         leaf mandatory-leaf {
14             type string;
15             mandatory true;
16         }
17     }
18 }