Projects moved under correct parent.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / test / resources / negative-scenario / testfile2.yang
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/test/resources/negative-scenario/testfile2.yang b/opendaylight/sal/yang-prototype/yang/yang-model-parser-impl/src/test/resources/negative-scenario/testfile2.yang
new file mode 100644 (file)
index 0000000..ea5a11f
--- /dev/null
@@ -0,0 +1,29 @@
+module test2 {
+    yang-version 1;
+    namespace "urn:simple.types.data.demo";
+    prefix "t2";
+    
+    organization "opendaylight";
+    contact "http://www.opendaylight.org/";
+    
+    description "This is types-data test description";
+
+    revision "2013-02-27" {
+        reference " WILL BE DEFINED LATER";
+    }
+    
+    container c1 {
+        typedef int-ext {
+            type int32 {
+                range "10..20";
+            }
+        }
+    }
+    
+    container top {
+        leaf id {
+            type int-ext;
+        }
+    }
+
+}