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