6c5fef560fee52b660651c3626f96227f4ff54c3
[yangtools.git] / yang / yang-parser-impl / src / test / resources / semantic-statement-parser / test.yang
1 module test {
2     yang-version 1;
3     namespace "urn:tst:yang";
4     prefix "tst";
5
6     import importedtest {
7             prefix "imptst";
8     }
9
10     description "This is a test module";
11
12     revision 2015-03-04;
13
14     container mycontainer {
15         leaf myleaf {
16             type string;
17         }
18     }
19 }