YANG XPath functions - unit tests and bugfix
[yangtools.git] / yang / yang-data-jaxen / src / test / resources / yang-xpath-functions-test / derived-from-function / bar-invalid.yang
1 module bar-invalid {
2     namespace bar-ns;
3     prefix bar-prefix;
4     yang-version 1.1;
5
6     revision 2017-04-03;
7
8     container my-container {
9         list my-list {
10             key key-leaf;
11
12             leaf key-leaf {
13                 type string;
14             }
15
16             leaf idref-leaf {
17                 type int32;
18             }
19         }
20     }
21 }