[LLVMbugs] [Bug 14100] New: class name qualification
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Tue Oct 16 13:32:18 PDT 2012
http://llvm.org/bugs/show_bug.cgi?id=14100
Bug #: 14100
Summary: class name qualification
Product: clang
Version: 3.1
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P
Component: Frontend
AssignedTo: unassignedclangbugs at nondot.org
ReportedBy: tmmikolajczyk at gmail.com
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
Consider the following piece of code:
struct foo
{
void bar();
};
void foo::foo::foo::foo::bar() {} // seems to be invalid class name qual
int main(int, char**)
{
return 0;
}
The code compiled fine without any warning using clang, gcc, sunpro, but msvc
complains on that.
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list