mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
f7c70a4bd2
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>
16 lines
476 B
Dart
16 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
|
|
}
|