Merge "HostTracker Bundle Separation"
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / model / testfile1.yang
index 619a5c3e104a1ecd3dcc331ee235a3647cd47ebd..3dbfa780a3527641933e1dae3e77c237822bbe47 100644 (file)
@@ -123,6 +123,21 @@ module types1 {
                 path "/if:interfaces/if:interface/if:higher-layer-if";
             }
         }
+        leaf my-type {
+            type data:my-type1;
+        }
     }
-
+    
+    container mycont {
+        container innercont {
+            typedef mytype {
+                type string;
+            }
+        
+            leaf myleaf {
+                type mytype;
+            }
+        }
+    }
+    
 }