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