blob: 82a7db5dccbf3876b03f49cfa2d4b3a3a6f26d1a [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 an
* expression of type T if T is strictly non-nullable
*
* @description It is a warning to use the null check operator (!) on an
* expression of type T if T is strictly non-nullable. Test FutureOr<Never>
* @author sgrekhov@unipro.ru
* @issue 39598
*/
// SharedOptions=--enable-experiment=non-nullable
// Requirements=nnbd-strong
import "dart:async";
test(FutureOr<Never> n) {
n!; //# 01: static type warning
}
main() {
}