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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [memtemp47.C] - Rev 823

Go to most recent revision | 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 g(U u)
  { printf ("In S::g(U)\n"); }

  int c[16];
};


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

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

Go to most recent revision | 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.