Populate parser/ hierarchy
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rfc7950 / bug6901 / invalid-foo-union.yang
diff --git a/yang/yang-parser-rfc7950/src/test/resources/rfc7950/bug6901/invalid-foo-union.yang b/yang/yang-parser-rfc7950/src/test/resources/rfc7950/bug6901/invalid-foo-union.yang
deleted file mode 100644 (file)
index 4817219..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-module invalid-foo-union {
-    namespace "foo";
-    prefix foo;
-    yang-version 1.1;
-
-    feature f;
-
-    typedef enum-typedef {
-        type enumeration {
-            enum one;
-            enum two {
-                if-feature f;
-            }
-            enum three;
-        }
-    }
-
-    typedef union-typedef {
-        type union {
-            type enum-typedef;
-            type int16;
-        }
-    }
-
-    leaf union-leaf {
-        type union-typedef;
-        default two;
-    }
-}