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

             Bug #: 12784
           Summary: [Windows] Can't compile a class with not inlined
                    constructor / destructor
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: C++
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified


[As of r155981]
Repro:
==========================
class Class {
 public:
  Class();
  ~Class();
};

Class::Class() {}

Class::~Class() {}
==========================

->

Assertion failed: isa<X>(Val) && "cast<Ty>() argument of incompatible type!",
file C:\src\llvm\include\llvm/Support/Casting.h, line 194

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