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