blob: 62bea75966355f33a703b47a40acfc28d76f958f [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void a() {
}
void _a() {
}
void b() {
a();
}
void _b() {
_a();
}
kernel void v() {
b();
_b();
}