Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2136)

Side by Side Diff: tests/isolate/isolate_create_error_helper_syntax_error.dart

Issue 297413002: Ensure that failure to start an isolate all end up in the future. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't need to pretend imports. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // Regression test for issue 18865. 5 library isolate.create.error_helper_syntax_error;
6 6
7 class B<T> { } 7 // This library has a syntax error, and fails to load.
8 8
9 class A<T> extends B { 9 public static void main() {
10 static foo() => new A(); 10 print("MUST NOT BE PRINTED");
11 } 11 };
12 12
13 main () {
14 A.foo();
15 }
OLDNEW
« no previous file with comments | « tests/isolate/isolate_create_error_helper_lib5.dart ('k') | tests/isolate/isolate_create_error_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698