[LLVMbugs] [Bug 7469] New: clang c++ name lookup finds specialization of template conversion function
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Jun 23 12:59:11 PDT 2010
http://llvm.org/bugs/show_bug.cgi?id=7469
Summary: clang c++ name lookup finds specialization of template
conversion function
Product: clang
Version: unspecified
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P
Component: C++
AssignedTo: unassignedclangbugs at nondot.org
ReportedBy: sharparrow1 at yahoo.com
CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com
Testcase:
struct B
{
template < class T > operator T ();
};
struct D: B
{
using B::operator int;
};
Testcase from http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29027 . Invalid per
[temp.mem]p6.
--
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