blob: 40ec159d4ec73f051ae3c25dd1186914c9ebb93c [file] [log] [blame]
// @dart = 2.9
library test;
class I {
bool operator *(C other) => true;
}
abstract class C implements I {}
C c;
var x = c * c;
main() {}