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; 2+ 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] 2+ messages in thread

end of thread, other threads:[~2008-08-21 12:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-22 12:07 [Bug c++/32039] New: Using declaration accepts non-visible members from base classes 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).