645f3acca7
Closes #41386 Change-Id: I1a5a4cdc35cef37c7a8ba6a6aecb99457789bcdc Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/144940 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
14 lines
415 B
Dart
14 lines
415 B
Dart
// Copyright (c) 2020, 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.
|
|
|
|
void test() {
|
|
var map = {};
|
|
map[0].foo;
|
|
Iterable<String> elements = <String>[];
|
|
var list = new List.from(elements);
|
|
new List.from(elements).forEach((element) => element.foo);
|
|
}
|
|
|
|
main() {}
|