diff options
Diffstat (limited to 'test/Parser/cuda-kernel-call.cu')
-rw-r--r-- | test/Parser/cuda-kernel-call.cu | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Parser/cuda-kernel-call.cu b/test/Parser/cuda-kernel-call.cu new file mode 100644 index 0000000..f95ae9e --- /dev/null +++ b/test/Parser/cuda-kernel-call.cu @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s + +void foo(void) { + foo<<<1; // expected-error {{expected '>>>'}} expected-note {{to match this '<<<'}} + + foo<<<1,1>>>; // expected-error {{expected '('}} + + foo<<<>>>(); // expected-error {{expected expression}} +} |