blob: 216dd43c2bce14ad65d9a62525b04f899185fd1a [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void A() {
}
void _A() {
}
void B() {
A();
}
void _B() {
_A();
}
kernel void tint_symbol() {
B();
_B();
}