blob: bd77376cb2c028410f14de2f015f64abb5a0c8f1 [file] [log] [blame]
Eric Christopher723665f2011-08-19 22:16:23 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -g
2// XTARGET: darwin,linux
3// XFAIL: *
4template <typename T1,typename T2>
5inline void f(const T1&,const T2&) { }
6
7template <typename T1,typename T2,void F(const T1&,const T2&)>
8struct A {
9 template <typename T> void g(T& i) { }
10};
11
12int main() {
13 int i;
14 A<int,int,f> a;
15 a.g(i);
16}