OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 import "dart:async"; | |
6 import "package:expect/expect.dart"; | |
7 | |
8 main() async { | |
9 var error = "no error"; | |
10 try { | |
11 try { | |
12 await new Future.error("error"); | |
13 } on MissingType catch(e) { | |
hausner
2015/03/02 22:50:25
The analyzer will probably complain here.
| |
14 } | |
15 } catch (e) { | |
16 error = e; | |
17 } | |
18 Expect.isTrue(error is TypeError); | |
19 } | |
OLD | NEW |