Open uucidl opened 6 years ago
struct A { b: B; } // says Unresolved type name 'B' #static_assert(sizeof(A) == 4) struct B { data: int32; }
The workaround is to rearrange declarations so that B is defined before A.
The workaround is to rearrange declarations so that B is defined before A.