7b576f94ef49492a8bfb62e871feade4660dced0
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / bug6884 / circular-includes / foo.yang
1 module foo {
2     namespace "foo";
3     prefix foo;
4
5     include sub-foo {
6         revision-date 2017-02-09;
7     }
8     include sub-foo-2;
9
10     container root {
11     }
12 }