| Index: tests/language/src/CodeAfterTryIsExecutedTest.dart
|
| diff --git a/tests/language/src/CodeAfterTryIsExecutedTest.dart b/tests/language/src/CodeAfterTryIsExecutedTest.dart
|
| deleted file mode 100644
|
| index ced8d2c405e77399c3d49db3ed3e7c75cf7fc6fb..0000000000000000000000000000000000000000
|
| --- a/tests/language/src/CodeAfterTryIsExecutedTest.dart
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -// Copyright (c) 2012, 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.
|
| -// Test that the runtime still runs the code after a try/catch. The
|
| -// test cannot use Expect.throws, because Expect.throws uses the same
|
| -// pattern.
|
| -
|
| -main() {
|
| - var exception;
|
| - try {
|
| - throw 'foo';
|
| - } catch (String ex) {
|
| - exception = ex;
|
| - }
|
| - Expect.isTrue(exception is String);
|
| - throw 'foo'; /// 01: runtime error
|
| -}
|
|
|