summaryrefslogtreecommitdiff
path: root/clang/test/Parser/cuda-kernel-call.cu
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/cuda-kernel-call.cu')
-rw-r--r--clang/test/Parser/cuda-kernel-call.cu9
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/Parser/cuda-kernel-call.cu b/clang/test/Parser/cuda-kernel-call.cu
new file mode 100644
index 0000000..f95ae9e
--- /dev/null
+++ b/clang/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}}
+}