Move SimpleSchemaContext
[yangtools.git] / yang / yang-model-util / src / test / resources / yt1231.yang
1 module foo {
2   namespace foo;
3   prefix foo;
4
5   container foo {
6     container foo;
7
8     choice baz {
9       description desc;
10       case baz {
11         description desc;
12         choice bar {
13           description desc;
14           case bar {
15             status deprecated;
16             container bar;
17           }
18         }
19       }
20     }
21
22     choice bar {
23       reference ref;
24       case bar {
25         reference ref;
26         choice baz {
27           reference ref;
28           case baz {
29             reference ref;
30             container xyzzy;
31           }
32         }
33       }
34     }
35   }
36 }
37