Index: test/codegen/misc.dart |
diff --git a/test/dart_codegen/types/c.dart b/test/codegen/misc.dart |
similarity index 72% |
copy from test/dart_codegen/types/c.dart |
copy to test/codegen/misc.dart |
index 62b77a3fbe35e2db4e9d121dcd889f247081f6d3..cc83f8bcf9770783f4938a28b5fccd5fd8563d1b 100644 |
--- a/test/dart_codegen/types/c.dart |
+++ b/test/codegen/misc.dart |
@@ -2,12 +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. |
-library c; |
- |
-import 'b.dart'; |
- |
-void bar() { |
- f3(f4(3)); |
- f1(f4); |
- f2(f3); |
+main() { |
+ print(1.toString()); |
+ print(1.0.toString()); |
+ print(1.1.toString()); |
} |