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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [lookup/] [using2.C] - Diff between revs 154 and 816

Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
//
//
// This file is part of the GNU ISO C++ Library.  This library is free
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// Free Software Foundation; either version 2, or (at your option)
// any later version.
// any later version.
// This library is distributed in the hope that it will be useful,
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING.  If not, write to the Free
// with this library; see the file COPYING.  If not, write to the Free
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
// USA.
// USA.
// Contributed by Gabriel Dos Reis 
// Contributed by Gabriel Dos Reis 
// { dg-do compile }
// { dg-do compile }
namespace N
namespace N
{
{
  template void f() {}
  template void f() {}
}
}
using N;             // { dg-error "(using-declaration)|(nested-name)" "" }
using N;             // { dg-error "(using-declaration)|(nested-name)" "" }
using ::N;           // { dg-error "using-declaration" "" }
using ::N;           // { dg-error "using-declaration" "" }
using N::f< 0 >;     // { dg-error "using-declaration" "" }
using N::f< 0 >;     // { dg-error "using-declaration" "" }
struct  A {
struct  A {
  template  void f(T);
  template  void f(T);
  template  struct X { };
  template  struct X { };
};
};
struct B : A {
struct B : A {
  using A::X;        // OK
  using A::X;        // OK
  using A::f;        // OK
  using A::f;        // OK
};
};
struct C : A {
struct C : A {
  using A::f; // { dg-error "using-declaration" "" }
  using A::f; // { dg-error "using-declaration" "" }
  using A::X;    // { dg-error "using-declaration" "" }
  using A::X;    // { dg-error "using-declaration" "" }
};
};
 
 

powered by: WebSVN 2.1.0

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