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