Populate xpath/ hierarchy
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / declared-statements-test / anyxml-declared-test.yang
1 module anyxml-declared-test {
2     namespace "anyxml-declared-test";
3     prefix "axdt";
4
5     feature foobar-feature;
6
7     anyxml foobar {
8         when "foo = 'bar'" {
9             description "when description";
10             reference "when reference";
11         }
12         if-feature foobar-feature;
13         must "bar != 'foo'" {
14             description "must description";
15             reference "must reference";
16             error-app-tag "error";
17             error-message "error";
18         }
19         config false;
20         status current;
21         description "anyxml description";
22         reference "anyxml reference";
23         mandatory "false";
24     }
25 }