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