blob: b42c0fb2aaf8ba5dcb4b8530805c61280e9b996a [file] [log] [blame]
Eli Friedmande99a452009-07-22 22:25:00 +00001// RUN: clang-cc -fsyntax-only %s
2
3template <class A> int x(A x) { return x++; }
4int y() { return x<int>(1); }