da7d9685bdb5dd98615ad9f6f178dee872b66916
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / include-import-stmt-test / invalid-include-10 / child-module.yang
1 submodule child-module {
2     belongs-to "root-module" {
3         prefix "root";
4     }
5
6     typedef new-string-type {
7         type string {
8             pattern "[abc]{3}";
9         }
10     }
11
12     feature new-feature {
13         description "A new feature";
14     }
15 }