43004cf105da6f77b85ba2d7ef2a35f28c8fd71a
[yangtools.git] / yang / yang-parser-impl / src / test / resources / deviation-resolution-test / deviation-replace / foo-invalid.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     revision 2017-01-20;
6
7     deviation "/my-leaf" {
8         deviate replace {
9             units "seconds";
10         }
11     }
12
13     leaf my-leaf {
14         type int32;
15     }
16 }