| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Dart test program importing with show/hide combinators. | 5 // Dart test program importing with show/hide combinators. |
| 6 | 6 |
| 7 library importCombinatorsNegativeTest; | 7 library importCombinatorsNegativeTest; |
| 8 |
| 8 import "import1_lib.dart" show hide, show hide ugly; | 9 import "import1_lib.dart" show hide, show hide ugly; |
| 9 | 10 |
| 10 main() { | 11 main() { |
| 11 print(hide); | 12 print(hide); |
| 12 print(show); | 13 print(show); |
| 13 print(ugly); // Resolution error, identifier 'ugly ' is hidden. | 14 print(ugly); // Resolution error, identifier 'ugly ' is hidden. |
| 14 } | 15 } |
| OLD | NEW |