1 // RUN: clang-cc -fsyntax-only %s
2 
3 template <class A> int x(A x) { return x++; }
4 int y() { return x<int>(1); }
5