YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenCXX/implicit-instantiation-1.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

29 lines
483 B
C++

// RUN: %clang_cc1 -emit-llvm %s -o %t
template<typename T>
struct X {
void f(T) { }
void f(char) { }
void g(T) { }
void h(T) { }
};
void foo(X<int> &xi, X<float> *xfp, int i, float f) {
// RUN: grep "linkonce_odr.*_ZN1XIiE1fEi" %t | count 1
xi.f(i);
// RUN: grep "linkonce_odr.*_ZN1XIiE1gEi" %t | count 1
xi.g(f);
// RUN: grep "linkonce_odr.*_ZN1XIfE1fEf" %t | count 1
xfp->f(f);
// RUN: grep "linkonce_odr.*_ZN1XIfE1hEf" %t | count 0
}