| Index: tests/language/import_combinators_negative_test.dart
|
| diff --git a/tests/language/import_combinators_negative_test.dart b/tests/language/import_combinators_negative_test.dart
|
| index 20d6e68ce1bdc4409977244b1a78cc8db68743ee..30b9f1b0d9a162f6bbd6f08abd5c64065c2259e4 100644
|
| --- a/tests/language/import_combinators_negative_test.dart
|
| +++ b/tests/language/import_combinators_negative_test.dart
|
| @@ -5,10 +5,11 @@
|
| // Dart test program importing with show/hide combinators.
|
|
|
| library importCombinatorsNegativeTest;
|
| +
|
| import "import1_lib.dart" show hide, show hide ugly;
|
|
|
| main() {
|
| print(hide);
|
| print(show);
|
| - print(ugly); // Resolution error, identifier 'ugly ' is hidden.
|
| + print(ugly); // Resolution error, identifier 'ugly ' is hidden.
|
| }
|
|
|