blob: 0c876d02ec56923be3f181b09218549e9e63c430 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm-only -verify %s
struct A {
A& operator=(const A&);
};
struct B {
A a;
float b;
int (A::*c)();
_Complex float d;
};
void a(B& x, B& y) {
x = y;
}