blob: 9ee0289658ff8a912eed661def6e524a80c1736c [file] [log] [blame]
struct duration {
duration operator/=(int c) {
return *this;
}
};
void a000090() {
duration() /= 1;
}