Bug 8307: Add the option for activating deviation statements
[yangtools.git] / yang / yang-parser-impl / src / test / resources / deviation-resolution-test / deviation-delete / foo10-invalid.yang
index a54f21c17c665eb51ae3aac5d164de1f7d6c8900..b5f76dcddd3a4a1fa3a5e773371f937c536d1bdb 100644 (file)
@@ -2,16 +2,17 @@ module foo {
     namespace foo;
     prefix foo;
 
+    import bar {
+        prefix bar;
+        revision-date 2017-01-20;
+    }
+
     revision 2017-01-20;
 
-    deviation "/my-leaf-list" {
+    deviation "/bar:my-leaf-list" {
         deviate delete {
             default 10;
             default 100;
         }
     }
-
-    leaf-list my-leaf-list {
-        type int32;
-    }
 }
\ No newline at end of file