[LLVMbugs] [Bug 15243] New: clang makes nested-namespace incorrectly
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Tue Feb 12 01:54:41 PST 2013
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: unassignedclangbugs at nondot.org
Reporter: jm.j.park at samsung.com
CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20130212/6a04949d/attachment.html>
More information about the llvm-bugs
mailing list