4ebf3c2cac7b6f22b7ed9cef9c2caf3d71a7a161
[yangtools.git] / yang / yang-parser-impl / src / test / resources / included-statements-test / root-module.yang
1 module root-module {
2     namespace "urn:opendaylight.org/root-module";
3     prefix "rtm";
4
5     include child-module;
6
7     leaf new-leaf {
8         type new-string-type;
9     }
10
11     leaf old-leaf {
12         type new-int32-type;
13     }
14 }