blob: 4c39a081ebe70ba0a40e97cb8a89b4fe7e1cc316 [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 a non-nullable receiver.
*
* @description Check it is a warning to use a null aware operator (?., ?.., ??,
* ??=, or ...?) on a non-nullable receiver. Test legacy pre-NNBD types
* @author sgrekhov@unipro.ru
* @issue 39598
*/
// SharedOptions=--enable-experiment=non-nullable
// Requirements=nnbd-strong
import "legacy_lib.dart";
main() {
A a = A();
a?.foo(); //# 01: static type warning
a?..foo(); //# 02: static type warning
a ?? new Object(); //# 03: static type warning
a ??= new A(); //# 04: static type warning
List<A> list = [A()];
List<A> alist = [A(), A(), ...? list]; //# 05: static type warning
}