Populate model/ hierarchy
[yangtools.git] / model / yang-model-export / src / test / resources / bugs / bug2444 / yang / must.yang
1 module must {
2     namespace "must";
3     prefix mu;
4     yang-version 1.1;
5
6     notification n {
7         must "1!=0";
8     }
9
10     rpc r {
11         input {
12             must "1!=0";
13         }
14         output {
15             must "1!=0";
16         }
17     }
18
19     container root {
20         presence "This is a presence container.";
21         action a {
22             input {
23                 must "1!=0";
24             }
25             output {
26                 must "1!=0";
27             }
28         }
29     }
30 }