Index: test/codegen/lib/mirrors/library_imports_shown.dart |
diff --git a/test/codegen/language/async_backwards_compatibility_2_test.dart b/test/codegen/lib/mirrors/library_imports_shown.dart |
similarity index 54% |
copy from test/codegen/language/async_backwards_compatibility_2_test.dart |
copy to test/codegen/lib/mirrors/library_imports_shown.dart |
index 4f9074f3eafc7f1433be335402d556b0a835da9b..6790902e6953b560e6217a51d31154ac1fd25b2c 100644 |
--- a/test/codegen/language/async_backwards_compatibility_2_test.dart |
+++ b/test/codegen/lib/mirrors/library_imports_shown.dart |
@@ -2,14 +2,9 @@ |
// 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. |
-int get async { return 1; } |
+library library_imports_shown; |
-class A { |
- async() => null; |
-} |
+import 'library_imports_a.dart' show somethingFromA, somethingFromBoth; |
+import 'library_imports_b.dart' show somethingFromB; |
-main() { |
- var a = async; |
- var b = new A(); |
- var c = b.async(); |
-} |
+var somethingFromShown; |