blob: 370adadb8ae2251ff7470b2fa4b7bd454375456c [file] [log] [blame]
library test;
class I {
bool operator *(C other) => true;
}
abstract class C implements I {}
C c = throw '';
var x = c * c;
test() {}