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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [template/] [conv1.C] - Rev 301

Compare with Previous | Blame | View Log

// { dg-do compile }

// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Dec 2001 <nathan@codesourcery.com>

// PR 4361. Template conversion operators were not overloaded.

template <class T> struct Second;

template<class T> struct First
{
  int Foo ();
  
  template <class U> operator Second<U>();
  template <class U> operator First<U>();
};

template <class T> int First<T>::Foo ()
{} // This is here to make sure we didn't smash Foo's decl in the
   // method vector

struct B { };
struct D { };

void Foo ()
{
  First<B> (First<D>::*pf)() = &First<D>::operator First<B>;
}

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.