| Index: tests/corelib/double_round3_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/deferred/deferred_semantics_test.dart b/tests/corelib/double_round3_test.dart
|
| similarity index 51%
|
| copy from tests/compiler/dart2js_extra/deferred/deferred_semantics_test.dart
|
| copy to tests/corelib/double_round3_test.dart
|
| index 140faca3f8479b47e297b51ee4201a0a9f928b31..cd1b0a6fad3074e5100bfb772d50c09351130eef 100644
|
| --- a/tests/compiler/dart2js_extra/deferred/deferred_semantics_test.dart
|
| +++ b/tests/corelib/double_round3_test.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.
|
|
|
| -// Test that deferred loading requires same library names.
|
| -
|
| -import 'dart:async';
|
| -
|
| -@lazy /// 01: compile-time error
|
| -import 'deferred_function_library.dart';
|
| -
|
| -const lazy = const DeferredLibrary('fisk');
|
| -
|
| main() {
|
| -}
|
| + Expect.equals(0, 0.49999999999999994.round());
|
| + Expect.equals(0, (-0.49999999999999994).round());
|
| + Expect.isTrue(0.49999999999999994.round() is int);
|
| + Expect.isTrue((-0.49999999999999994).round() is int);
|
| +}
|
|
|