blob: 0c876d02ec56923be3f181b09218549e9e63c430 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm-only -verify %s
Eli Friedmanebc33172009-12-08 01:57:53 +00002
3struct A {
4 A& operator=(const A&);
5};
6
7struct B {
8 A a;
9 float b;
10 int (A::*c)();
11 _Complex float d;
12};
13void a(B& x, B& y) {
14 x = y;
15}
16