blob: c15e394ce7bf219273d914264c2bebde4811da23 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void c() {
int a = 1;
a = (a + 2);
}
void b() {
c();
c();
}