Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Unified Diff: tests/corelib/double_round3_test.dart

Issue 12667008: Update status files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/corelib/corelib.status ('k') | tests/corelib/double_round_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+}
« no previous file with comments | « tests/corelib/corelib.status ('k') | tests/corelib/double_round_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698