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

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