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