Fix runtime type search
[mdsal.git] / binding / mdsal-binding-generator / src / test / resources / mdsal824 / foo.yang
1 module foo {
2   yang-version 1.1;
3   namespace foo;
4   prefix foo;
5
6   grouping act-grp {
7     action foo {
8       output {
9         choice type {
10           mandatory true;
11           case some-type {
12             leaf some-type {
13               type string;
14             }
15           }
16         }
17       }
18     }
19   }
20
21   grouping uses-grp {
22     uses act-grp;
23   }
24 }