I have the following C struct where KrTokenKind is an enum
struct KrToken {
u32 index : 24;
KrTokenKind kind : 7;
u32 virtual : 1;
};
It is invisible when accessed directly without casting
And in locals
A temporary workaround is in the parent type (KrToken) to add a type view with the cast:
rows($, (KrTokenKind)$.kind, $.index, (bool)$.virtual)
