| Index: corelib/src/print.dart
|
| diff --git a/runtime/tests/vm/dart/mysrc/test3a.dart b/corelib/src/print.dart
|
| similarity index 80%
|
| copy from runtime/tests/vm/dart/mysrc/test3a.dart
|
| copy to corelib/src/print.dart
|
| index f0873ab4549dd7fc85d7e7b55a14be01e42451ff..87d9fc60892d5289cc4f3033e324369640ecf311 100644
|
| --- a/runtime/tests/vm/dart/mysrc/test3a.dart
|
| +++ b/corelib/src/print.dart
|
| @@ -2,6 +2,6 @@
|
| // 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 test3a() {
|
| - return 3;
|
| +void print(Object object) {
|
| + Logger.print(object);
|
| }
|
|
|