blob: 08a8b32b0224cedd17b273562c3b84e325f9e758 [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 type of await expression match with expected
/// non-nullable types statically and the expression cannot be null.
///
/// @author iarkh@unipro.ru
import "dart:async";
Future<bool> test() async {
bool b = await null;
// ^
// [analyzer] unspecified
// [cfe] unspecified
int i = await null;
// ^
// [analyzer] unspecified
// [cfe] unspecified
String s = await null;
// ^
// [analyzer] unspecified
// [cfe] unspecified
Object o = await null;
// ^
// [analyzer] unspecified
// [cfe] unspecified
return null;
// ^
// [analyzer] unspecified
// [cfe] unspecified
throw "Should not reach here!";
}
main() {}