blob: 3bd707ed86577013754a7580f65362c24b873ccb [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3struct duration {
4 duration operator/=(int c) {
5 return *this;
6 }
7};
8
9void a000090() {
10 duration() /= 1;
11}