summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/assign-operator.cpp
blob: 3e0be4519438259f177fc38c539f5b28ca020dd2 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc %s -emit-llvm-only -verify

class x {
int operator=(int);
};
void a() {
  x a;
  a = 1u;
}
OpenPOWER on IntegriCloud