// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s template struct S {}; template void f(); void foo(void) { // In C++11 mode, all of these are expected to parse correctly, and the CUDA // language should not interfere with that. // expected-no-diagnostics S>> s3; S>>> s4; S>>>> s5; (void)(&f>>==0); }