aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-09-22-CompositeExprValue.cpp
blob: 9ee0289658ff8a912eed661def6e524a80c1736c (plain)
1
2
3
4
5
6
7
8
9
struct duration {
 duration operator/=(int c) {
	return *this;
  }
};

void a000090() {
	duration() /= 1;
}