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/] [memclass4.C] - Rev 749

Go to most recent revision | Compare with Previous | Blame | View Log

// { dg-do run  }
#include <typeinfo>

template <class T>
struct allocator {
  typedef T*        pointer;

  template <class U> struct rebind {
    typedef allocator<U> other;
  };
};

template <class T, class Allocator>
struct alloc_traits
{
  typedef typename Allocator::template rebind<T>::other allocator_type;
};

int main ()
{
  typedef alloc_traits<int, allocator<void> >::allocator_type at;

  return typeid (at) != typeid (allocator <int>);
}

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.