blob: 24d08e59e32bae726c952e543f269643d0a34ec8 [file] [log] [blame] [edit]
#include <metal_stdlib>
using namespace metal;
struct S {
int i;
};
[[max_total_threads_per_threadgroup(1)]]
kernel void v() {
S V = {};
int i = V.i;
}