blob: 8c59e01b4940267b8e778188b90595fb2394657d [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() {}