http://llvm.org/bugs/show_bug.cgi?id=15243

            Bug ID: 15243
           Summary: clang makes nested-namespace incorrectly
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified

Following code snippet seems incorrect, but clang handles it without error. 

class CFoo
{
public:
  CFoo() {};
  ~CFoo() {};
};

int main()
{
  CFoo::CFoo::CFoo::CFoo::CFoo* pFoo = new CFoo();
}

-- 
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