blob: 77ecf9d15a59278510b93ac894a6c20f28e5e33c [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 This means that you cannot do cascade invocations on explicit
* extension applications: E(e)..foo()..bar() is a compile-time error. This is
* necessary because that expression evaluates to the value of E(e), and an
* extension application does not have a value.
*
* @description Check that cascade invocations cannot be applied to explicit
* extension invocation
* @author sgrekhov@unipro.ru
* @issue 43214
*/
class C {
}
extension Ext on C {
int foo() => 42;
int bar() => 43;
}
main() {
C c = C();
Ext(c)
//^^^
// [analyzer] unspecified
// [cfe] unspecified
..foo()
..bar();
}