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