remove a dead bool.
[llvm/avr.git] / test / FrontendC++ / 2003-09-22-CompositeExprValue.cpp
blob3bd707ed86577013754a7580f65362c24b873ccb
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 struct duration {
4 duration operator/=(int c) {
5 return *this;
7 };
9 void a000090() {
10 duration() /= 1;