631e726173288d4aa49c2ce3bb0a37fe554b5369
[yangtools.git] / yang / yang-parser-impl / src / test / resources / semantic-statement-parser / multiple-revisions / node-test / foo.yang
1 module foo {
2     namespace "foo";
3     prefix foo;
4     yang-version 1;
5
6     import bar { prefix bar; revision-date 2016-04-05; }
7
8     revision 2016-04-06 {
9         description "test";
10     }
11
12     container foo-root {
13         uses bar:grp;
14     }
15 }