blob: ad2b31311791cc745d5ae1c2a344bf64726727e8 [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() {}