OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012, 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. | |
srdjan
2013/08/22 16:12:01
Please add comment what this test is testing. I as
Florian Schneider
2013/08/23 08:49:33
Renaming it to test(). Not sure what to add as a c
| |
4 | |
5 main() { | |
6 void crash() { | |
7 f() { | |
8 try {} catch (e) {} | |
9 } | |
10 try {} catch (e) {} | |
11 } | |
12 crash(); | |
13 } | |
14 | |
OLD | NEW |