blob: 9631da2794a89588831161b1e990289d00401abd [file] [log] [blame]
// @dart = 2.9
library test;
import 'dart:async';
abstract class MyFuture implements Future<int> {}
void test() async {}
main() {}