llvm-6502/test/C++Frontend/2003-09-22-CompositeExprValue.cpp
2003-09-22 18:27:20 +00:00

10 lines
108 B
C++

struct duration {
duration operator/=(int c) {
return *this;
}
};
void a000090() {
duration() /= 1;
}