168e04b6359f62eb087aa8cd4610ef87ccd0e08c
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / leafref / test-leafref3.yang
1 module test-leafref3 {
2
3     yang-version 1;
4     namespace "urn:opendaylight:params:xml:ns:yang:test";
5     prefix "test";
6
7     revision "2017-02-24" {
8         description "Initial revision of test model.";
9     }
10
11     container testContainer {
12         list testList {
13             leaf testLeaf {
14                 type string;
15             }
16         }
17     }
18
19     notification testLeafrefNotification {
20         leaf tesLeafref {
21             type leafref {
22                 path "/test:testContainer/test:testList/test:testLeaf";
23             }
24         }
25     }
26
27 }