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

Unified Diff: tests/language/regress_24283_test.dart

Issue 1338233002: Fix right shifting of a Mint value by an amount larger than 63. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/language/bit_shift_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/regress_24283_test.dart
diff --git a/tests/language/regress_24283_test.dart b/tests/language/regress_24283_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d98e8291e1f9dcf30429fb1961ebea53d09a90e8
--- /dev/null
+++ b/tests/language/regress_24283_test.dart
@@ -0,0 +1,23 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// 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 "package:expect/expect.dart";
+
+main() {
+ // Smi
+ var i = 1 << 30;
+ var j = -i;
+ Expect.equals(0, i >> 37);
+ Expect.equals(-1, j >> 37);
+ // Mint
+ i = 1 << 50;
+ j = -i;
+ Expect.equals(0, i >> 67);
+ Expect.equals(-1, j >> 67);
+ // Bigint
+ i = i << 120;
+ j = -i;
+ Expect.equals(0, i >> 199);
+ Expect.equals(-1, j >> 199);
+}
« no previous file with comments | « tests/language/bit_shift_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698