4fdbe1b47d
Work towards a better fix for https://github.com/flutter/flutter/issues/118609. Change-Id: I7db8bd74cc272a2bb1df3a04e6f1d7b82b877ddb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/279175 Reviewed-by: Ben Konyi <bkonyi@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
10 lines
273 B
Dart
10 lines
273 B
Dart
// Copyright (c) 2023, 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.
|
|
|
|
import 'dart:developer';
|
|
|
|
void main() {
|
|
debugger();
|
|
}
|