Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rfc7950 / include-import-stmt-test / valid-11 / child-module.yang
1 submodule child-module {
2     yang-version 1.1;
3     belongs-to "root-module" {
4         prefix "root";
5     }
6
7     typedef new-string-type {
8         type string {
9             pattern "[abc]{3}";
10         }
11     }
12
13     feature new-feature {
14         description "A new feature";
15     }
16 }