Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / leafref_typedef_union / bug8449.yang
diff --git a/binding2/mdsal-binding2-generator-impl/src/test/resources/leafref_typedef_union/bug8449.yang b/binding2/mdsal-binding2-generator-impl/src/test/resources/leafref_typedef_union/bug8449.yang
deleted file mode 100644 (file)
index 4cf0519..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-module bug8449 {
-    yang-version 1;
-    namespace "bug8449";
-    prefix "tst";
-
-    revision "2017-05-16" {
-    }
-
-    typedef name1-ref {
-        type leafref {
-            path "/tst:top/tst:name1";
-        }
-    }
-
-    typedef name2-ref {
-        type leafref {
-            path "/tst:top/tst:name2";
-        }
-    }
-
-    typedef name3-ref {
-        type string;
-    }
-
-    container top {
-        leaf name1 {
-            type string;
-        }
-        leaf name2 {
-            type string;
-        }
-    }
-
-    container test {
-        leaf ref {
-            type name3-ref;
-        }
-    }
-
-    container cont {
-        leaf ref {
-            type union {
-                type name1-ref;
-                type name2-ref;
-            }
-            mandatory true;
-        }
-    }
-}