LibertyXDR: add support for default in unions

This commit is contained in:
2025-05-07 19:42:46 +02:00
parent 9a26284a64
commit b69d3f8692
3 changed files with 30 additions and 7 deletions

View File

@@ -25,5 +25,7 @@ struct Struct {
union Onion switch (Enum tag) {
case NOTHING:
void;
default:
void;
} o;
};