http://llvm.org/bugs/show_bug.cgi?id=16709
Bug ID: 16709
Summary: Assert when a struct derived when a struct in another
namespace attempts to call a base method with the
namespace
Product: clang
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Frontend
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Classification: Unclassified
Repro:
namespace Foo {
struct Base {
void Bar() { }
};
}
struct Derived : public Foo::Base {
void test() {
Foo::Bar();
}
};
Assert failed:
Assertion `!QType.isNull() && "lookup done with dependent qualifier?"' failed.
clang/lib/Sema/SemaExpr.cpp:2316
--
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