Test that a call to a trampoline is turned into a call to
[oota-llvm.git] / test / C++Frontend / 2003-09-22-CompositeExprValue.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3 struct duration {
4  duration operator/=(int c) {
5   return *this;
6   }
7 };
8
9 void a000090() {
10   duration() /= 1;
11 }