hanchenye-llvm-project/llvm/test/Regression/C++Frontend/2003-09-22-CompositeExprVal...

10 lines
108 B
C++

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