Files
clang-p2996/clang/test/SemaCXX/pr13353.cpp
Rafael Espindola 60a2bba976 Handle the case where the base type is not dependent, but the derived one is.
Fixes pr13353.cpp.

llvm-svn: 160393
2012-07-17 20:24:05 +00:00

14 lines
236 B
C++

// RUN: %clang_cc1 -fsyntax-only %s
struct foo {
virtual void bar() ;
};
template<typename T>
class zed : public foo {
};
template<typename T>
class bah : public zed<T> {
void f() {
const_cast<foo *>(this->g())->bar();
}
};