https://llvm.org/bugs/show_bug.cgi?id=23736

            Bug ID: 23736
           Summary: bug in inline namespaces
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++11
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified

This code defines function a::f, but I believe it should defines function
a::b::f. GCC defines a::b::f.

namespace a
{
    inline namespace b
    {
        void f();
    }
}

void a::f()
{
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to