blob: 7effa5923980580ecd7d6e50d67d96b24326b82e [file] [log] [blame]
// 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 Error catch (e) {
// ignore: EMPTY_CATCHES
}
}