Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / qnameDuplicity / two-same-node-in-choice / two-same-nodes-in-choice-case.yang
1 module two-same-nodes-in-choice-case {
2
3     namespace "urn:test:two:same-nodes-in-choice-case";
4     prefix "two";
5
6     organization "OPEN DAYLIGHT";
7     contact "http://www.opendaylight.org/";
8
9     revision 2013-07-09 {
10
11     }
12
13     container cont3 {
14         choice choice3 {
15             default second;
16             case first {
17                 leaf leaf-case1 {
18                     type int32;
19                 }
20             }
21             case second {
22                 leaf leaf-case1 {
23                     type int32;
24                 }
25             }
26         }
27     }
28 }