Bug 8237 - BI to BA conversion not resolving nested nodes
[mdsal.git] / binding / mdsal-binding-test-model / src / main / yang / opendaylight-bug-5845.yang
1 module foo {
2     yang-version 1;
3     namespace "urn:yang.foo";
4     prefix "foo";
5
6     revision "2016-01-01" {
7     }
8
9     container boolean-container {
10         list boolean-list {
11             key "boolean-leaf-1 boolean-leaf-2";
12             leaf boolean-leaf-1 {
13                 type boolean;
14             }
15             leaf boolean-leaf-2 {
16                 type boolean;
17             }
18         }
19
20         list boolean-list-int {
21             key "boolean-leaf-int";
22             leaf boolean-leaf-int {
23                 type int8;
24             }
25         }
26     }
27 }