Fix path namespace resolution
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / mdsal-499 / imported.yang
1 module imported {
2   namespace "http://foo/bar/yang/imported";
3   prefix imp;
4
5   typedef foo {
6     type string {
7       pattern 'S(\d+G)?(\d+M)?';
8     }
9   }
10
11   container root {
12     leaf leaf1 {
13       type string;
14     }
15   }
16 }