63a0e0628b32f2a368b853e6cd5e4e1cb36787b8
[yangtools.git] / yang / yang-parser-impl / src / test / resources / must-when-stmt-test / when-test.yang
1 module when-test {
2     namespace "urn:opendaylight.org/when-test";
3     prefix "wt";
4
5     container test-container {
6         when "conditional-leaf = 'autumn-leaf'";
7         leaf conditional-leaf {
8             type string;
9         }
10
11     }
12
13 }