dart-sdk/tests/language_2/import_combinators2_test.dart
Bob Nystrom f7c70a4bd2 Bring back import_combinators_negative_test.
I turned it into a normal positive multitest to better capture where the
error is.

Change-Id: I69a1ddbf38b594d6b8270e28f32e018878eee755
Reviewed-on: https://dart-review.googlesource.com/13922
Reviewed-by: Ben Konyi <bkonyi@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
2017-10-13 21:21:55 +00:00

17 lines
476 B
Dart

// Copyright (c) 2012, 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.
// Dart test program importing with show/hide combinators.
// Show "hide" and "show", hide "ugly".
import "import1_lib.dart" show hide, show hide ugly;
main() {
print(hide);
print(show);
// Ugly is hidden.
print(ugly); //# 00: compile-time error
}