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

Subversion Repositories openrisc

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

Compare with Previous | Blame | View Log

// { dg-do link  }
// GROUPS passed templates membertemplates
extern "C" int printf(const char*, ...);

template <class X>
struct S
{
  template <class U>
  void f(U u);

  template <class U>
  void g(U u);

  int c[16];
};

template <class X>
template <class U>
void S<X>::f(U u)
  { printf ("In S::f(U)\n"); g(u); }

template <class X>
template <class U>
void S<X>::g(U u)
  { printf ("In S::g(U)\n"); }

int main()
{
  S<char*> s;
  s.f(3);
  s.f("adf");
}

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.