blob: 5198cb831b3c29e2edcc31f4601f13a8a55b4b93 [file] [log] [blame]
import 'dart:async';
class Divergent<T> implements Future<Divergent<Divergent<T>>> {
noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
}
main() {}
test() async {}