blob: ff536f1bb74d37e02658e5488cb586163a70c47f [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void d() {
}
void c() {
d();
}
void b() {
c();
}
void a() {
b();
}