blob: 6dcac2b034848477ad3f7409d7227a235f34a688 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S2 {
int m;
};
struct S1 {
S2 m;
};
fragment void f() {
S1 v = {};
return;
}