00dc17687a
Closes #40093 Change-Id: I6ed558884f2cf6b10f2d011a80e3f3e15d64b00d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/133068 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
15 lines
346 B
Dart
15 lines
346 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.
|
|
|
|
error() {
|
|
for (late int i = 0; i < 10; ++i) {
|
|
print(i);
|
|
}
|
|
for (late int i in <int>[]) {
|
|
print(i);
|
|
}
|
|
}
|
|
|
|
main() {}
|