blob: d403f44962a9d4f3c24fb99a009445747d6077ec [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S {
int i;
};
void main_1() {
S V = {};
V.i = 5;
}
kernel void v() {
main_1();
}