2cbbab76f45b8f17bb214b4ebb61e799a147ca45
[yangtools.git] / yang / yang-parser-impl / src / test / resources / deviation-resolution-test / foo-invalid-deviation-target.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4
5     revision 2017-01-20;
6
7     deviation "/my-cont" {
8         deviate add {
9             max-elements 5;
10         }
11     }
12
13     container my-cont {
14
15     }
16 }