YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug5481 / module1.yang
1 module module1 {
2     yang-version 1;
3
4     namespace "http://example.com/module1";
5     prefix "module1";
6
7     description "Module 1";
8
9     revision "2016-03-09" {
10         description "Initial version.";
11     }
12
13     container top {
14         leaf top-leaf {
15             type string;
16         }
17     }
18 }