blob: 9ee0289658ff8a912eed661def6e524a80c1736c [file] [log] [blame]
Chris Lattnere308f682003-09-22 18:27:20 +00001struct duration {
2 duration operator/=(int c) {
3 return *this;
4 }
5};
6
7void a000090() {
8 duration() /= 1;
9}