Refactored ModuleBuilder to avoid name conflicts. Fixed implementation of ChoiceBuilder.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / model / testfile1.yang
index 619a5c3e104a1ecd3dcc331ee235a3647cd47ebd..4ec69c18b229bb7bc4055bf7140b526c0378da2f 100644 (file)
@@ -124,5 +124,17 @@ module types1 {
             }
         }
     }
-
+    
+    container mycont {
+        container innercont {
+            typedef mytype {
+                type string;
+            }
+        
+            leaf myleaf {
+                type mytype;
+            }
+        }
+    }
+    
 }