blob: f8eeae6dc74c49e72f7cf916121b552052c5a85e [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 no warning if null aware operators (?., ?.., ??,
* ??=, or ...?) are used on a 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();
c?.test();
c?..test();
c ?? a;
a ??= c;
List<C>? clist = [C(), C()];
List<A> alist = [A(), C(), ...? clist];
c = null;
c?.test();
c?..test();
c ?? a;
a ??= c;
clist = null;
alist = [A(), C(), ...? clist];
}