blob: 1504162ff2e9b90d5028c83a0c65fe7984060c09 [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.
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=non-nullable
class A {
test() {}
}
class C extends A {}
main() {
A a = A();
C c = C();
a?.test(); //# 01: static type warning
a?..test(); //# 02: static type warning
a ?? c; //# 03: static type warning
a ??= c; //# 04: static type warning
List<C> clist = [C(), C()];
List<A> alist = [A(), C(), ...? clist]; //# 05: static type warning
}