Fix union stringValue() with Decimal64
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / resources / compilation / mdsal738 / foo.yang
1 module foo {
2   namespace foo;
3   prefix foo;
4
5   typedef pm-data-type {
6     type union {
7       type uint64;
8       type int64;
9       type decimal64 {
10         fraction-digits 2;
11       }
12       type decimal64 {
13         fraction-digits 17;
14       }
15     }
16   }
17 }