OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.ns/] [template3.C] - Rev 699

Compare with Previous | Blame | View Log

// { dg-do run  }
//Check instantiation of templates outside their namespace
namespace A{
template <class T>void g(){}
template <class T> struct B {
  B(){
   f();
  }
  void f()
  {
    g<T>();
  }
};
}

template class A::B<int>;
A::B<int> s;

int main()
{
  return 0;
}

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.