1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
9 lines
183 B
Plaintext
9 lines
183 B
Plaintext
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
#include "cuda.h"
|
|
|
|
__global__ void g1(int x) {}
|
|
__global__ int g2(int x) { // expected-error {{must have void return type}}
|
|
return 1;
|
|
}
|