mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 15:18:26 -05:00
96bc59b1ca
Fixes #22200
6 lines
104 B
Plaintext
6 lines
104 B
Plaintext
extern __device__ int file3_func(int);
|
|
int __device__ file2_func(int x)
|
|
{
|
|
return x + file3_func(x);
|
|
}
|