Populate parser/ hierarchy
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / rfc7950 / bug6887 / bar.yang
diff --git a/yang/yang-parser-rfc7950/src/test/resources/rfc7950/bug6887/bar.yang b/yang/yang-parser-rfc7950/src/test/resources/rfc7950/bug6887/bar.yang
deleted file mode 100644 (file)
index 5eef206..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-module bar {
-    namespace bar;
-    prefix bar;
-    yang-version 1.1;
-
-    revision 2017-02-02;
-
-    typedef my-base-bits-type {
-        type bits {
-            bit bit-a {
-                position 1;
-            }
-            bit bit-b;
-            bit bit-c {
-                position 3;
-            }
-            bit bit-d {
-                position 4;
-            }
-        }
-    }
-
-    typedef my-derived-bits-type {
-        type my-base-bits-type {
-            bit bit-b;
-            bit bit-c {
-                position 3;
-            }
-            bit bit-d {
-                position 4;
-            }
-        }
-    }
-
-    leaf my-bits-leaf {
-        type my-derived-bits-type {
-            bit bit-b;
-            bit bit-c {
-                position 3;
-            }
-        }
-    }
-
-    leaf my-bits-leaf-2 {
-        type my-derived-bits-type {
-            // inherits bits from the base type
-        }
-    }
-}
\ No newline at end of file