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
struct EmptyStruct {
int : 10;
};
[numthreads(1,1,1)]
void main() {
EmptyStruct A = {1}; // to demonstrate you aren't supposed to initialize
EmptyStruct E = {}; // bug here (this should be accepted but currently generates an error)
}