| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "dart:async"; | 5 import "dart:async"; |
| 6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
| 7 | 7 |
| 8 main() async { | 8 main() async { |
| 9 var error = "no error"; | 9 var error = "no error"; |
| 10 try { | 10 try { |
| 11 try { | 11 try { |
| 12 await new Future.error("error"); | 12 await new Future.error("error"); |
| 13 } on MissingType catch(e) { | 13 } on MissingType catch (e) {} |
| 14 } | |
| 15 } catch (e) { | 14 } catch (e) { |
| 16 error = e; | 15 error = e; |
| 17 } | 16 } |
| 18 Expect.isTrue(error is TypeError); | 17 Expect.isTrue(error is TypeError); |
| 19 } | 18 } |
| OLD | NEW |