881e35ee82
In the process, I discovered multitests can't handle imports to non-existent libraries. So I fixed that and cleaned up the code. Change-Id: I9a8557e84f91ba7858bdf98f8732cd0ded55aa1a Reviewed-on: https://dart-review.googlesource.com/52869 Commit-Queue: Bob Nystrom <rnystrom@google.com> Reviewed-by: Leaf Petersen <leafp@google.com>
10 lines
348 B
Dart
10 lines
348 B
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import "nonexistent_library.dart"; //# 01: compile-time error
|
|
|
|
main() {
|
|
print("Er, hello world? This should not be printed!");
|
|
}
|