| Index: tests/language/rethrow_test.dart
|
| ===================================================================
|
| --- tests/language/rethrow_test.dart (revision 21305)
|
| +++ tests/language/rethrow_test.dart (working copy)
|
| @@ -29,7 +29,7 @@
|
| Expect.fail("Should have thrown an exception");
|
| } catch (e) {
|
| Expect.equals(true, identical(e, currentException));
|
| - throw;
|
| + rethrow;
|
| Expect.fail("Should have thrown an exception");
|
| }
|
| } on OtherException catch (e) {
|
| @@ -47,7 +47,7 @@
|
| Expect.fail("Should have thrown an exception");
|
| } catch (e) {
|
| Expect.equals(true, identical(e, currentException));
|
| - throw;
|
| + rethrow;
|
| Expect.fail("Should have thrown an exception");
|
| }
|
| } catch (e) {
|
|
|