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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [unify8.C] - Diff between revs 149 and 154

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// { dg-do link }
// { dg-do link }
// Copyright (C) 2005 Free Software Foundation, Inc.
// Copyright (C) 2005 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 7 Jul 2005 
// Contributed by Nathan Sidwell 7 Jul 2005 
// Origin:Wolfgang Bangerth 
// Origin:Wolfgang Bangerth 
// PR 21799: deduction of cvqualifiers on member functions was wrong
// PR 21799: deduction of cvqualifiers on member functions was wrong
template  void f (T &,       void (T::*)()      );
template  void f (T &,       void (T::*)()      );
template  void f (const T &, void (T::*)() const) {}
template  void f (const T &, void (T::*)() const) {}
struct X {
struct X {
    void g() const {}
    void g() const {}
};
};
const X *x;
const X *x;
int main () {
int main () {
  f (*x, &X::g);
  f (*x, &X::g);
}
}
 
 

powered by: WebSVN 2.1.0

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