9bac327e32
was overwritten by isolate initialization code Fixes situation where the following command would fail due to the dartdev kernel not being compiled with null-safety: dart --strong-null-safety --enable-experiment=non-nullable run foo.dart Change-Id: I7e7c980eb3274a51e64c031e6bfef8650b897b8b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/158345 Reviewed-by: Alexander Markov <alexmarkov@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
10 lines
271 B
Dart
10 lines
271 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.
|
|
|
|
// @dart=2.10
|
|
|
|
void main() {
|
|
print('Smoke test!');
|
|
}
|