blob: 3bd707ed86577013754a7580f65362c24b873ccb [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00002
Chris Lattnere308f682003-09-22 18:27:20 +00003struct duration {
4 duration operator/=(int c) {
Jeff Cohenb02fbfc2005-04-23 21:26:11 +00005 return *this;
Chris Lattnere308f682003-09-22 18:27:20 +00006 }
7};
8
9void a000090() {
Jeff Cohenb02fbfc2005-04-23 21:26:11 +000010 duration() /= 1;
Chris Lattnere308f682003-09-22 18:27:20 +000011}