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