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
```@safe:struct T { int* a,b,c; }void bar(void[24]);void gee(void*);void test() { static T t; gee(&t); // no error bar(cast(void[24])t); // cast from `T` to `void[24]` not allowed in safe code}```
Both should be allowed or both should error.