aa246f6588
Reduces the noise when disallowing implicit dynamic. Change-Id: I98b03cb675ecd4b9e7f4135efa274fb57eb87832 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/104164 Reviewed-by: Nicholas Shahan <nshahan@google.com> Commit-Queue: Nate Bosch <nbosch@google.com>
17 lines
394 B
Dart
17 lines
394 B
Dart
// Copyright (c) 2017, 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 main() {
|
|
/*1:main*/ test();
|
|
}
|
|
|
|
test() {
|
|
try {
|
|
/*2:test*/ throw '>ExceptionMarker<';
|
|
// ignore: UNUSED_CATCH_CLAUSE
|
|
} on String catch (e) {
|
|
rethrow;
|
|
}
|
|
}
|