1b422af61f
The "@compile-error" comment is an old not-great way of defining static error tests. See: https://github.com/dart-lang/sdk/issues/45634 Change-Id: I6218c6ea339b6c19c1495b1db9b2da3fe1654718 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/296440 Commit-Queue: Jake Macdonald <jakemac@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com> Reviewed-by: Jake Macdonald <jakemac@google.com>
13 lines
547 B
Dart
13 lines
547 B
Dart
// Copyright (c) 2019, 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.
|
|
|
|
/// Part file has library and import directives.
|
|
|
|
// TODO(rnystrom): Using a multitest instead of making this a static error test
|
|
// because the error is reported in the part file and not in this file. Once
|
|
// issue #44990 is fixed, this can be a static error test.
|
|
part "script2_part.dart"; //# 01: compile-time error
|
|
|
|
main() {}
|