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