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