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