blob: 06fe9101d83c9020fdd5bf89dc7beb1037a3959d [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 strictly non-nullable receiver. Test some function type
* @author sgrekhov@unipro.ru
* @issue 39598
* @issue 39714
*/
// SharedOptions=--enable-experiment=non-nullable
// Requirements=nnbd-strong
void foo() {}
void bar() {}
typedef void Foo();
main() {
Foo a = foo;
a?.toString(); //# 01: static type warning
a?..toString(); //# 02: static type warning
a ?? bar; //# 03: static type warning
a ??= bar; //# 04: static type warning
List<Foo> clist = [foo, bar];
List<Foo> alist = [foo, bar, ...? clist]; //# 05: static type warning
}