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