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