aboutsummaryrefslogtreecommitdiff
path: root/test/SemaTemplate/instantiate-expr-5.cpp
blob: b42c0fb2aaf8ba5dcb4b8530805c61280e9b996a (plain) (blame)
1
2
3
4
// RUN: clang-cc -fsyntax-only %s

template <class A> int x(A x) { return x++; }
int y() { return x<int>(1); }