blob: c0707836bdac5791b046177f836e2ba1b4db0bb6 [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 compile-time error if an extension application occurs in a
/// place where it is not the target expression of a simple or composite member
/// invocation. That is, the only valid use of an extension application is to
/// invoke members on it. This is similar to how prefix names can also only be
/// used as member invocation targets. The main difference is that extensions can
/// also declare operators.
///
/// @description Check that it is no compile-time error if null-aware member
/// access like E(o)?.id is used for explicit extension invocation
/// @issue 39325
/// https://github.com/dart-lang/language/issues/677
/// @author sgrekhov@unipro.ru
/// @issue 43217
import "../../Utils/expect.dart";
class C {
int v = 0;
}
extension Ext on C {
void set id(int val) {
this.v = val;
}
}
main() {
C c = C();
Ext(c)?.id = 42;
// ^^
// [analyzer] STATIC_WARNING.INVALID_NULL_AWARE_OPERATOR
// ^
// [cfe] Operand of null-aware operation '?.' has type 'C' which excludes null.
Expect.equals(42, c.v);
}