YANG XPath functions - unit tests and bugfix
[yangtools.git] / yang / yang-data-jaxen / src / test / resources / yang-xpath-functions-test / bit-is-set-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 my-list {
10             key flags;
11
12             leaf flags {
13                 type int32;
14             }
15
16             leaf ordinary-leaf {
17                 type string;
18             }
19         }
20     }
21 }