brintos

brintos / llvm-project-archived public Read only

0
0
Text · 178 B · e17a910 Raw
13 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4// Make sure this doesn't crash.5 6@protocol P7@end8template <class T>9id<P> foo(T) {10  int i;11  foo(i);12}13