blob: 8bcdd5ffbca352aa06296a0537706089c713426d [file] [log] [blame]
void A() {
}
void _A() {
}
void B() {
A();
}
void _B() {
_A();
}
[numthreads(1, 1, 1)]
void main() {
B();
_B();
}