public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/32039]  New: Using declaration accepts non-visible members from base classes
@ 2007-05-22 12:07 andrew dot stubbs at st dot com
  2008-08-21 12:01 ` [Bug c++/32039] " gcc-bugzilla at contacts dot eelis dot net
  0 siblings, 1 reply; 12+ messages in thread
From: andrew dot stubbs at st dot com @ 2007-05-22 12:07 UTC (permalink / raw)
  To: gcc-bugs

The following code should not compile:

struct A
{
  int foo(int);
};

struct B : public A
{
  int foo(long);
  // using A::foo;  // This would make it visible
};

struct C : public B
{
  using A::foo; // A::foo should not be visible
};

The problem should be that B::foo hides A::foo from class C. Clause 7.3.3/14 of
the C++ standard says the using declaration should not work, in this case -
class A is not a direct base class of class C. However, GCC 4.1.1 accepts it
with no diagnostic.


-- 
           Summary: Using declaration accepts non-visible members from base
                    classes
           Product: gcc
           Version: 4.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: andrew dot stubbs at st dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32039


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2021-05-04 12:31 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-32039-4@http.gcc.gnu.org/bugzilla/>
2011-11-22  8:51 ` [Bug c++/32039] Using declaration accepts non-visible members from base classes fabien at gcc dot gnu.org
2014-02-28 21:41 ` fabien at gcc dot gnu.org
2014-02-28 21:43 ` fabien at gcc dot gnu.org
2014-02-28 21:53 ` fabien at gcc dot gnu.org
2014-03-01  0:03 ` harald at gigawatt dot nl
2014-03-01  7:53 ` fabien at gcc dot gnu.org
2015-01-10 16:46 ` ville.voutilainen at gmail dot com
2015-01-10 17:27 ` harald at gigawatt dot nl
2015-01-10 17:32 ` ville.voutilainen at gmail dot com
2015-01-10 18:12 ` ville.voutilainen at gmail dot com
2021-05-04 12:31 ` rguenth at gcc dot gnu.org
2007-05-22 12:07 [Bug c++/32039] New: " andrew dot stubbs at st dot com
2008-08-21 12:01 ` [Bug c++/32039] " gcc-bugzilla at contacts dot eelis dot net

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).