blob: c727cb7c52d742366e73d8e53452f3b9f0e2ba66 [file] [log] [blame]
Gaurav Agrawalf5766422016-03-23 19:04:17 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 container food {
6 choice snack {
7 case sports-arena {
8 leaf pretzel {
9 type empty;
10 }
11 }
12 case late-night {
13 choice lunch {
14 case late {
15 leaf pretzel {
16 type empty;
17 }
18 }
19 }
20 }
21 }
22 }
23}