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