blob: 0a998b0cf2e97078e7305a89f4ea345912807a4c [file] [log] [blame]
// Copyright (c) 2019, 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 It is a warning to use a null aware operator (?., ?.., ??, ??=,
/// or ...?) on an expression of type T if T is strictly non-nullable.
///
/// @description Check it is a warning to use a null aware operator (?., ?.., ??,
/// ??=, or ...?) on a non-nullable receiver. Test FutureOr<T>, where
/// <T extends Object>
/// @author sgrekhov@unipro.ru
/// @issue 39598
/// @issue 39714
import "dart:async";
test<T extends Object>(FutureOr<T> t) {
t?.toString();
//^
// [cfe] Operand of null-aware operation '?.' has type 'FutureOr<T>' which excludes null.
// ^^
// [analyzer] STATIC_WARNING.INVALID_NULL_AWARE_OPERATOR
t?..toString();
//^
// [cfe] Operand of null-aware operation '?..' has type 'FutureOr<T>' which excludes null.
// ^^^
// [analyzer] STATIC_WARNING.INVALID_NULL_AWARE_OPERATOR
t ?? t;
//^
// [cfe] Operand of null-aware operation '??' has type 'FutureOr<T>' which excludes null.
// ^
// [analyzer] STATIC_WARNING.DEAD_NULL_AWARE_EXPRESSION
t ??= t;
//^
// [cfe] Operand of null-aware operation '??=' has type 'FutureOr<T>' which excludes null.
// ^
// [analyzer] STATIC_WARNING.DEAD_NULL_AWARE_EXPRESSION
List<FutureOr<T>> clist = [t, t];
List<FutureOr<T>> alist = [t, t, ...? clist];
// ^^^^
// [analyzer] STATIC_WARNING.INVALID_NULL_AWARE_OPERATOR
// ^
// [cfe] Operand of null-aware operation '...?' has type 'List<FutureOr<T>>' which excludes null.
}
main() {
test<FutureOr<String>>("Lily was here");
}