YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenCXX/template-dependent-bind-temporary.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

25 lines
418 B
C++

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// rdar: //8620524
// PR7851
struct string {
string (const string& );
string ();
~string();
};
string operator + (char ch, const string&);
template <class T>
void IntToString(T a)
{
string result;
T digit;
char((digit < 10 ? '0' : 'a') + digit) + result;
}
int main() {
// CHECK: define linkonce_odr void @_Z11IntToStringIcEvT_(
IntToString('a');
}