blob: 34d08301a0914dd01e4dea0cf7b0565079f95914 [file]
#include <metal_stdlib>
using namespace metal;
void f() {
int const a = 0;
int const b = a;
int const a_1 = 0;
int const b_1 = a_1;
}
[[max_total_threads_per_threadgroup(1)]]
kernel void v() {
(f());
}