blob: 2c0008151f287937c3e0d52805e0b69d1c3679d5 [file] [log] [blame]
// @dart = 2.13
class Foo {
Foo operator >>>(_) => this;
}
extension on Symbol {
String operator >(_) => "Greater Than used";
String call(_) => "Called";
}
abstract class Bar implements List<List<List<String>>> {}
main() {}