blob: 90f24eae252d318f3aa190d92618b3ee99e6427e [file] [log] [blame]
// Copyright (c) 2021, 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 An expression of the form [MyList(object)] or
/// [MyList<String>(object)] must only be used for extension member access. It is
/// a compile-time error to use it in any other way, similarly to how it is a
/// compile-time error to use a prefix for anything other than member access.
/// This also means that you cannot use an override expression as the receiver of
/// a cascade, because a cascade does evaluate its receiver to a value, or of an
/// assigning operator like += or ++. Unlike a prefix, it doesn't have to be
/// followed by a [.] because extensions can also declare operators, but it must
/// be followed by a [.], a declared operator, or an arguments part (in case the
/// extension implements call).
/// @description Check that overriding extensions can be used without member
/// access call.
/// @author sgrekhov@unipro.ru
import "extension_conflict_resolution_lib.dart" as testlib;
extension Ext1 on String {
bool get test => false;
}
main() {
testlib.MySimpleExt("testme")++; //# 01: syntax error
Ext1("testme") += 14; //# 02: syntax error
testlib.MySimpleExt("testme")--; //# 03: syntax error
Ext1("testme") *= 10; //# 04: syntax error
Ext1("testme") = 12; //# 05: syntax error
testlib.MySimpleExt("testme") = -33; //# 06: syntax error
Ext1("testme") = null; //# 07: syntax error
testlib.MySimpleExt("testme") = null; //# 08: syntax error
}