blob: 44aca177f61107000013defbf0526d7158cc5ac6 [file] [log] [blame]
void a() {
}
void a__() {
}
void b() {
a();
}
void b__() {
a__();
}
[numthreads(1, 1, 1)]
void main() {
b();
b__();
}