template<class X> struct A {
template<int I> void f() {}
};
template<class T> void g()
{
A<T> a;
a.f<3>(); // Compilation fails here (Line 18)
}
int main(int argc, char *argv[])
{
g<int>(); // Line 23
}
コンパイラ(GCC)は言う:
hhh.cpp: In function 'void g()':
hhh.cpp:18: error: expected primary-expression before ')' token
hhh.cpp: In function 'void g() [with T = int]':
hhh.cpp:23: instantiated from here
hhh.cpp:18: error: invalid use of member (did you forget the '&' ?)
これは、なぜ誰も説明できますか?それを働かせる方法はありますか?
エラーは? – Yacoby
コンパイラは何について不平を言っていますか? – Romain
それは私のために働く。どのようにg()を呼びますか? – philsquared