Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-parser-impl / src / test / resources / negative-scenario / testfile2.yang
1 module test2 {
2     yang-version 1;
3     namespace "urn:simple.types.data.demo";
4     prefix "t2";
5     
6     organization "opendaylight";
7     contact "http://www.opendaylight.org/";
8     
9     description "This is types-data test description";
10
11     revision "2013-02-27" {
12         reference " WILL BE DEFINED LATER";
13     }
14     
15     container c1 {
16         typedef int-ext {
17             type int32 {
18                 range "10..20";
19             }
20         }
21     }
22     
23     container top {
24         leaf id {
25             type int-ext;
26         }
27     }
28
29 }