blob: a3a50e5d2c3495e64c23ae0d6ce57c966a22ab18 [file] [log] [blame]
// RUN: %clang_cc1 -std=c++0x -fsyntax-only %s
struct D;
struct B {
D& operator = (const D&);
};
struct D : B {
using B::operator=;
};
struct F : D {
};
void H () {
F f;
f = f;
}