xref: /llvm-project/clang/test/Interpreter/CUDA/sanity.cu (revision ddeab07ca63235f8d952e1171b56fdb0f2d761c9)
1 // RUN: cat %s | clang-repl --cuda | FileCheck %s
2 
3 extern "C" int printf(const char*, ...);
4 
test_func()5 __global__ void test_func() {}
6 
7 test_func<<<1,1>>>();
8 printf("CUDA Error: %d", cudaGetLastError());
9 // CHECK: CUDA Error: 0
10 
11 %quit
12