blob: fb87aa3588ad957b05d9f81b0a8d37a3978ff134 [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 the null check operator (!) on a
* non-nullable expression.
*
* @description Check that it is a warning to use the null check operator (!) on
* a non-nullable expression. Test function type
* @author sgrekhov@unipro.ru
* @issue 39598
*/
// SharedOptions=--enable-experiment=non-nullable
// Requirements=nnbd-strong
void foo() {}
typedef void Foo();
main() {
Function f1 = foo;
f1!; //# 01: static type warning
Foo f2 = foo;
f2!; //# 02: static type warning
}