blob: 219e717b53f705770a355f62919750eed9272316 [file] [log] [blame]
void a() {
}
void _a() {
}
void b() {
a();
}
void _b() {
_a();
}
[numthreads(1, 1, 1)]
void main() {
b();
_b();
}