blob: e6999dded19d46fd54bd1929bd338fe561071f05 [file] [log] [blame]
library test;
class C {
bool operator *(C other) => true;
}
C c = new C();
var x = c * c;
main() {}