blob: e01b2242b6cce6c4d09a54ef7f2c962d85695c5e [file] [log] [blame]
Gaurav Agrawal3a6b5562016-05-03 00:47:40 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 leaf invalid-interval {
6 type hello {
7 pattern "[a-zA-Z]";
8 }
9 }
10 typedef hello {
11 type string {
12 pattern "[0-9]";
13 }
14 }
15}