blob: 6801356a15e51f71ccc1cc8017c847e90484d521 [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.
// @dart = 2.9
/// @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
import "../../Utils/expect.dart";
class C {
}
extension Ext on C {
int id() => 42;
}
main() {
C c = C();
Expect.equals(42, Ext(c)?.id());
}