次のコードを添付します (これもバグのある最初の投稿です)。
VS2012 ではコンパイルできません:
struct POD1
{
int x;
};
struct POD2
{
char x;
};
class A
{
public:
typedef POD1 innerType;
void doSomthing(POD1 t);
};
class B
{
public:
typedef POD2 innerType;
void doSomthing(POD2 t) { }
};
template<typename T>
class X
{
public:
using myType = typename T::innerType; // Doesn't work
void foo(myType bar) {} // Doesn't work
};
int _tmain(int argc, _TCHAR* argv[])
{
X<B> x;
POD2 b;
x.foo(b);
return 0;
}
私が得るエラー:
1>c:\users\user\documents\visual studio 2012\projects\try\try\try.cpp(36): error C2873: 'myType' : symbol cannot be used in a using-declaration
1> c:\users\user\documents\visual studio 2012\projects\try\try\try.cpp(38) : see reference to class template instantiation 'X<T>' being compiled
1>c:\users\user\documents\visual studio 2012\projects\try\try\try.cpp(36): error C2143: syntax error : missing ';' before '='
1>c:\users\user\documents\visual studio 2012\projects\try\try\try.cpp(36): error C2238: unexpected token(s) preceding ';'
1>c:\users\user\documents\visual studio 2012\projects\try\try\try.cpp(37): error C2061: syntax error : identifier 'myType'
EDIT テンプレートのエイリアシングは (まだ) VS2012 では機能しません。回避策はありますか?
男