blob: cbe730ee4a409b99e5ff9d72b268bf58fefca0e2 [file] [log] [blame]
/*
* Copyright (c) 2020, 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.
*/
/**
* @assertion The flatten function is modified as follows:
*
* [flatten(T)] is defined by cases on [T]:
*
* if [T] is [S?] then [flatten(T) = flatten(S)?]
* otherwise if [T] is [S*] then [flatten(T) = flatten(S)*]
* otherwise if [T] is [FutureOr<S>] then [flatten(T) = S]
* otherwise [if T <: Future] then let [S] be a type such that [T <:
* Future<S>] and for all [R], if [T <: Future<R>] then [S <: R]; then
* [flatten(T) = S]
* otherwise [flatten(T) = T]
*
* @description Check that future flattening works correctly for non-nullable
* [Future<int>] and Future<Object> types and the expression can be non-null.
*
* Issue 41437
* @author iarkh@unipro.ru
*/
// Requirements=nnbd-strong
import "dart:async";
import "../../Utils/expect.dart";
main() {
asyncStart();
Future<int>(() => 1).then((value) => asyncEnd());
asyncStart();
Future<Future<int>>(() => Future<int>(() => 1)).then((value) {
value.then((value1) => asyncEnd());
});
asyncStart();
Future<Object>(() => 1).then((value) => asyncEnd());
asyncStart();
Future<Future<Object>>(() => Future<Object>(() => 1)).then((value) {
value.then((value1) => asyncEnd());
});
}