mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-01 20:00:22 -05:00
8358bfe33a
Fixes #311
11 lines
120 B
Plaintext
11 lines
120 B
Plaintext
struct StructWithUnions {
|
|
a: union {
|
|
b: Float64
|
|
c: String
|
|
}
|
|
d: union {
|
|
e: Float64
|
|
f: String
|
|
}
|
|
}
|