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