llvm-project/clang/test/SemaTemplate/member-function-template.cpp

6 lines
81 B
C++

// RUN: clang-cc -fsyntax-only %s
struct X {
template<typename T> T& f(T);
};