new testcase
[oota-llvm.git] / test / C++Frontend / 2003-09-22-CompositeExprValue.cpp
1 struct duration {
2  duration operator/=(int c) {
3         return *this;
4   }
5 };
6
7 void a000090() {
8         duration() /= 1;
9 }