blob: d25b7c2f9f5f0552ac51a2b62dfd3331d907aea4 [file] [log] [blame]
Mahesh Poojary Sbbd48492016-07-19 10:58:07 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5
6 typedef topInt {
7 type int64;
8 default "10";
9 }
10
11 typedef midInt {
12 type topInt;
13 }
14
15 leaf lowInt {
16 type midInt;
17 }
18}