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