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