blob: 84cc1d40ac423cbe1b1e52d7bd48ce1bc26d8e2f [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;