// RUN: clang-cc -emit-llvm -femit-all-decls -o %t %s && // RUN: grep "_ZNK4plusIillEclERKiRKl" %t | count 1 template struct plus { Result operator()(const T& t, const U& u) const { return t + u; } }; template struct plus;