blob: 4fae84c28a8767e19268f09693bcfc4919757605 [file] [log] [blame]
void d() {
}
void c() {
d();
}
void b() {
c();
}
[numthreads(1, 1, 1)]
void a() {
b();
}