blob: 53058bbc028e1ec4312c61ef87b7d679be994e1a [file] [log] [blame]
library test.name;
xunion OlderSimpleUnion {
int64 i;
float32 f;
};
xunion NewerSimpleUnion {
// float f; // removed
int64 i; // unchanged
string s; // added
vector<string> v; // added
};