blob: 640244763c748434d49429130aad4863f4078487 [file]
#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{}));
}