[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Interpreter / CUDA / sanity.cu
blobef9d68df464dd58168ebbea7f838ec51c9dfdb14
1 // RUN: cat %s | clang-repl --cuda | FileCheck %s
3 extern "C" int printf(const char*, ...);
5 __global__ void test_func() {}
7 test_func<<<1,1>>>();
8 printf("CUDA Error: %d", cudaGetLastError());
9 // CHECK: CUDA Error: 0
11 %quit