Introduce top-level pom file.
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / resources / compilation / union-typedef / union-typedef-test.yang
1 module union-typedef-test {
2     yang-version 1;
3     namespace "org:opendaylight:yangtools:union:typedef";
4     prefix "tp";
5
6     description
7         "Test unused import";
8
9     revision "2014-11-24" {
10         reference "WILL BE DEFINED LATER";
11     }
12
13     typedef typedef-union {
14         type union {
15             type int32;
16             type string;
17         }
18     }
19 }