Populate model/ hierarchy
[yangtools.git] / model / yang-model-export / src / test / resources / bugs / bug2444 / yang / binary-spec.yang
1 module binary-spec {
2     namespace "binary-spec";
3     prefix bin;
4
5     leaf bin-leaf {
6         type binary {
7             length "1..99";
8         }
9     }
10
11     leaf bin-leaf-2 {
12         type binary {
13         }
14     }
15 }