blob: a3a50e5d2c3495e64c23ae0d6ce57c966a22ab18 [file] [log] [blame]
Sean Hunt4cc12c62011-06-23 00:26:20 +00001// RUN: %clang_cc1 -std=c++0x -fsyntax-only %s
2
3struct D;
4struct B {
5 D& operator = (const D&);
6};
7struct D : B {
8 using B::operator=;
9};
10struct F : D {
11};
12
13void H () {
14 F f;
15 f = f;
16}