Index: tests/language/regress_13462_0_test.dart |
diff --git a/tests/language/create_unresolved_type_test.dart b/tests/language/regress_13462_0_test.dart |
similarity index 78% |
copy from tests/language/create_unresolved_type_test.dart |
copy to tests/language/regress_13462_0_test.dart |
index ceaf6dc421edb871d8741f36f23b83b50c23a897..b87bf1f24d7378ea99edd41562464cc8f67ffed6 100644 |
--- a/tests/language/create_unresolved_type_test.dart |
+++ b/tests/language/regress_13462_0_test.dart |
@@ -2,6 +2,8 @@ |
// 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. |
+import 'dart:mirrors'; |
+ |
main() { |
- new F<int>(); /// 01: runtime error, static type warning |
+ print(MirrorSystem.getName(#foo)); |
} |