Enforce augment statement argument well-formedness
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / YT1189 / foo.yang
1 module foo {
2   namespace "foo";
3   prefix "foo";
4
5   container cont;
6
7   // Invalid: the path should be absolute
8   augment "cont" {
9
10   }
11 }