mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 14:32:24 +00:00
6005e923d8
The `regress` folder in tests/web and tests/web_2 has been renamed to `issue`. All issue-numbered tests have been placed there; other tests have been moved out of that folder. Change-Id: I4534d34b2ef21f7accc45c3ce097d9be74845e4d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/235984 Reviewed-by: Joshua Litt <joshualitt@google.com> Commit-Queue: Mayank Patke <fishythefish@google.com>
21 lines
517 B
Dart
21 lines
517 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.
|
|
|
|
// Regression test for failure caused by refactoring of handling of scope info
|
|
// locals map in the ssa locals handler.
|
|
|
|
// @dart=2.9
|
|
|
|
class Class {
|
|
static const list = [];
|
|
var field = {for (final key in list) key: null};
|
|
|
|
Class(parameter) {
|
|
parameter;
|
|
}
|
|
}
|
|
|
|
main() {
|
|
new Class(null);
|
|
}
|