blob: 38966aad2debdbe5467296ca285fbe2133260d49 [file] [log] [blame]
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001// RUN: clang-cc -emit-llvm -femit-all-decls -o %t %s &&
2// RUN: grep "_ZNK4plusIillEclERKiRKl" %t | count 1
3
4template<typename T, typename U, typename Result>
5struct plus {
6 Result operator()(const T& t, const U& u) const {
7 return t + u;
8 }
9};
10
11template struct plus<int, long, long>;