blob: a1b54083674ec466a0e42303751afc2459ba9caf [file] [log] [blame] [edit]
#include <metal_stdlib>
using namespace metal;
struct a {
int a;
};
void f(a a_1) {
a const b = a_1;
}
[[max_total_threads_per_threadgroup(1)]]
kernel void v() {
f(a{});
}