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