blob: 53af39c1290cd18afc45901e2c2fbe5440acd374 [file] [log] [blame] [edit]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library test;
import 'dart:async';
class MyFuture<T> implements Future<T> {
MyFuture() {}
MyFuture.value(T x) {}
dynamic noSuchMethod(invocation) => null;
MyFuture<S> then<S>(FutureOr<S> f(T x), {Function? onError}) => throw '';
}
void test(MyFuture<int> f) {
Future<int> t1 = f.then((x) async => x ?? await new Future<int>.value(3));
Future<int> t2 = f.then((x) async {
return /*info:DOWN_CAST_COMPOSITE*/ await x ?? new Future<int>.value(3);
});
Future<int> t5 = f.then((x) => x ?? new Future<int>.value(3));
Future<int> t6 = f.then((x) {
return /*info:DOWN_CAST_COMPOSITE*/ x ?? new Future<int>.value(3);
});
}
main() {}