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

           Summary: Incompatible functions in declarative region not being
                    checked for overload compatibility
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected], [email protected]


I think clang should diagnose the following:

struct string { };
void f() { string g(); g(); }
void g() { } // diagnostic expected here
int main() { f(); }

Currently it generates code that segfaults at runtime for me.

-- 
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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to