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

            Bug ID: 19987
           Summary: clang-cl: complains 'inheritance model does not match
                    definition'
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

Clang fails to compile the following code that succeeds with cl.exe

class A {};
template <class T> class B {
  void (T::*mCallOnResume)();
};
namespace q {
  class C : A, B<C> {
  };
};

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