Merge "Refactored ModuleBuilder to avoid name conflicts. Fixed implementation of...
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / resources / negative-scenario / testfile3.yang
1 module test3 {
2     yang-version 1;
3     namespace "urn:simple.container.demo";
4     prefix "t1";
5
6     import test0 {
7         prefix "data";
8     }
9     
10     augment "/data:unknown" {
11         when "if:ifType='ds0'";
12         leaf interface-id {
13             type leafref {
14                 path "/if:interfaces/if:interface/if:name";
15             }
16         }
17     }
18
19 }