Cleaned up Java Binding code from YANG Tools
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / leafref / leafref-absolute-invalid.yang
1 module leafref-absolute-invalid {
2     namespace "urn:xml:ns:yang:lra";
3     prefix lra;
4     revision "2015-02-25";
5
6     list neighbor {
7         description
8            "List of neighbors.";
9         leaf neighbor-id {
10             type leafref {
11                 path "/lra:neighbor/lra:neighbor-id";
12             }
13             description "Neighbor.";
14         }
15     }
16 }