aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cuda-kernel-call.cu
blob: 92e46e3acaf53cf1adf6ad0634f98ed86eeab18a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clang_cc1 -fsyntax-only -verify %s

template<typename> struct S {};
template<typename> void f();

void foo(void) {
  foo<<<1;      // expected-error {{expected '>>>'}} expected-note {{to match this '<<<'}}

  foo<<<1,1>>>; // expected-error {{expected '('}}

  foo<<<>>>();  // expected-error {{expected expression}}

  S<S<S<int>>> s; // expected-error 2{{use '> >'}}

  (void)(&f<S<S<int>>>==0); // expected-error 2{{use '> >'}}
}