// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -g template inline void f(const T1&,const T2&) { } template struct A { template void g(T& i) { } }; int main() { int i; A a; a.g(i); }