https://github.com/epiqc/ScaffCC
Raw File
Tip revision: c89857074e85d3e843cda9f33a19a30808b40c06 authored by EPiQC on 08 July 2019, 18:49:30 UTC
Merge pull request #36 from AndrewLitteken/ScaffCC_OSX
Tip revision: c898570
copy-assign-synthesis-3.cpp
// RUN: %clang_cc1 -emit-llvm-only -verify %s

struct A {
  A& operator=(A&);
};

struct B {
  void operator=(B);
};

struct C {
  A a;
  B b;
  float c;
  int (A::*d)();
  _Complex float e;
  int f[10];
  A g[2];
  B h[2];
};
void a(C& x, C& y) {
  x = y;
}

back to top