blob: 0fd457dfe6b486aa1b5140cf181bbbffff4e89f3 [file] [log] [blame]
// @dart = 2.6
import 'dart:async';
Future<List<Object>> f1() async {}
Future<Object> f3() async {}
Future<X> foo() async {}
Future<void> main() async {}
List<Object> f2() => [2];
class X {
X(this.x, this.y);
final x;
final y;
toString() => "X($x, $y)";
}
class Y {
f(_) {}
}