0136d582d24245d68fdca807129c886db4bc0fc4
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug6240 / correct / bar.yang
1 module bar {
2     namespace "bar";
3     prefix "bar";
4
5     include sub-bar {
6         revision-date 2016-07-19;
7     }
8     import foo { prefix foo; revision-date 2016-07-19; }
9
10     revision "2016-07-19";
11
12     uses foo:sub-foo-grp;
13     uses foo:foo-grp;
14 }