Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rfc7950 / bug6870 / invalid10.yang
1 module foo {
2     namespace "foo";
3     prefix foo;
4
5     container root {
6         leaf my-leaf {
7             type string {
8                 pattern '[xX][mM][lL].*' {
9                     modifier invert-match;
10                 }
11             }
12         }
13     }
14 }