This compiled on VS 2008, but it seems like non-standard usage of templates.
template <class T>
class Foo
{
public:
void bar(Foo<int> arg)
{
// do some stuff here
}
// more code ...
};
Is there an issue since the template specialization Foo<int>
is contained within the definition of its own template class?