998063ac0ff76d45e8e0d35b550741d3ded6d9a4
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug5335 / correct / case-1 / 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" {
13         container presence-container {
14             presence "presence-container";
15         }
16     }
17 }