[Bug c++/21204] New: using-directive does not honor name selection via using-declaration

boris at kolpackov dot net gcc-bugzilla@gcc.gnu.org
Mon Apr 25 09:00:00 GMT 2005


$ cat >bug.cxx

namespace N
{
  struct S {};
}

namespace M
{
  struct S {};
}

namespace K
{
  using namespace N;
  using namespace M;
  
  using N::S;
  
  S
  f ();
}

namespace P
{
  using namespace K;
  
  S
  f ();
}

$ g++-3.4 --version
g++-3.4 (GCC) 3.4.4 20050314 (prerelease) (Debian 3.4.3-12)

$ g++-3.4 -c bug.cxx
bug.cxx:26: error: `S' does not name a type

-- 
           Summary: using-directive does not honor name selection via using-
                    declaration
           Product: gcc
           Version: 3.4.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: boris at kolpackov dot net
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: x86_64-pc-linux-gnu
  GCC host triplet: x86_64-pc-linux-gnu
GCC target triplet: x86_64-pc-linux-gnu


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



More information about the Gcc-bugs mailing list