You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a class derives from Union<,> the implicit conversion operators can't be used, because their result Union<,> can't be upcasted to the derived type.
To fix this issue, code generator should always generate specialized conversion operators for types derived from Union<,>.
Union
implements implicit conversion like this:When a class derives from
Union<,>
the implicit conversion operators can't be used, because their resultUnion<,>
can't be upcasted to the derived type.To fix this issue, code generator should always generate specialized conversion operators for types derived from
Union<,>
.Related to #8345
The text was updated successfully, but these errors were encountered: