ae4543fcb9
Closes #46925 Change-Id: I81e97cae05c39c24b24dae82a222f857d4730ac7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/210465 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
10 lines
294 B
Dart
10 lines
294 B
Dart
// 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.
|
|
|
|
method() {}
|
|
const tearOff = method;
|
|
const invocation = tearOff();
|
|
|
|
main() {}
|