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