5aa705776b
Change-Id: Ide688cb577457a642d989deb8d4c7c638274a1bc Reviewed-on: https://dart-review.googlesource.com/c/80448 Reviewed-by: Kevin Millikin <kmillikin@google.com> Commit-Queue: Peter von der Ahé <ahe@google.com>
14 lines
335 B
Dart
14 lines
335 B
Dart
// Copyright (c) 2018, 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 "continue_inference_after_error_lib.dart" as lib;
|
|
|
|
class C {}
|
|
|
|
test() {
|
|
lib(new C().missing());
|
|
}
|
|
|
|
main() {}
|