Populate parser/ hierarchy
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rfc7950 / leafref-stmt / foo.yang
diff --git a/yang/yang-parser-rfc7950/src/test/resources/rfc7950/leafref-stmt/foo.yang b/yang/yang-parser-rfc7950/src/test/resources/rfc7950/leafref-stmt/foo.yang
deleted file mode 100644 (file)
index ba39f23..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-module foo {
-    namespace foo-ns;
-    prefix foo-prfx;
-    yang-version 1.1;
-
-    revision 2016-12-20;
-
-    leaf leafref-a {
-        type leafref {
-            path "../leaf-a";
-            require-instance true;
-        }
-    }
-
-    leaf leaf-a {
-        type string;
-    }
-
-    leaf leafref-b {
-        type leafref-typedef;
-    }
-
-    leaf leaf-b {
-        type string;
-    }
-
-    typedef leafref-typedef {
-        type leafref {
-            path "../leaf-b";
-            require-instance true;
-        }
-    }
-
-    leaf leafref-c {
-        type leafref {
-            path "../leaf-c";
-        }
-    }
-
-    leaf leaf-c {
-        type string;
-    }
-}
\ No newline at end of file