Populate data/ hierarchy
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug-4295 / foo.yang
diff --git a/yang/yang-data-impl/src/test/resources/bug-4295/foo.yang b/yang/yang-data-impl/src/test/resources/bug-4295/foo.yang
deleted file mode 100644 (file)
index be6abf3..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-module foo {
-    namespace "foo";
-    prefix foo;
-
-    container root {
-        container sub-root {
-            list outer-list {
-                key "o-id";
-                leaf o-id {
-                    type string;
-                }
-                list inner-list {
-                    key "i-id";
-                    leaf i-id {
-                        type string;
-                    }
-                    leaf i {
-                        type string;
-                    }
-                }
-                leaf o {
-                    type string;
-                }
-            }
-        }
-    }
-}