87b127229fb360e5dd72c4a1d12af5b48f52862a
[yangtools.git] / yang / yang-parser-impl / src / test / resources / deviation-resolution-test / deviation-delete / foo-invalid.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     import bar {
6         prefix bar;
7         revision-date 2017-01-20;
8     }
9
10     revision 2017-01-20;
11
12     deviation "/bar:my-leaf" {
13         deviate delete {
14             units "seconds";
15         }
16     }
17 }