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