fa2e23b83c
These messages where never used. This was revealed through the separation of Variable and InternalVariable. Change-Id: I96d337f941d300cc5437c9fa5c9341abe4889176 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/510380 Reviewed-by: Chloe Stefantsova <cstefantsova@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
9 lines
300 B
Dart
9 lines
300 B
Dart
// Copyright (c) 2026, 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.
|
|
|
|
test() {
|
|
int localFunction(int i) => i;
|
|
num Function(num) f = localFunction;
|
|
}
|