Bug 6884 - [Yang 1.1] Submodule can reference all definitions in all submodules
[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         revision-date 1970-01-01;
10     }
11
12     container root {
13     }
14 }