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