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