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

            Bug ID: 19233
           Summary: failing qualified lookup into global scope from within
                    class template crashes with -fms-compatibility
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Frontend
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

consider:
template <class T>
struct S : T {
  S() {
    { ::undef(); }
  }
};

This triggers the following assert in SemaExpr.cpp:2057:
assert(SS.isEmpty() && "qualifiers should be already handled");

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