| Index: tests/language/vm/uint32_shift_test.dart
|
| diff --git a/tests/language/vm/uint32_shift_test.dart b/tests/language/vm/uint32_shift_test.dart
|
| index 3f9f7e216469eab9c390331098deca0f8bf57cc7..f20210a7cc93496635cfc65b24b00196300ce656 100644
|
| --- a/tests/language/vm/uint32_shift_test.dart
|
| +++ b/tests/language/vm/uint32_shift_test.dart
|
| @@ -6,11 +6,15 @@
|
| import 'package:expect/expect.dart';
|
|
|
| class Good {
|
| - use(x) { return x & 0x1; }
|
| + use(x) {
|
| + return x & 0x1;
|
| + }
|
| }
|
|
|
| class Bad {
|
| - use(x) { return x & 0x100000000; }
|
| + use(x) {
|
| + return x & 0x100000000;
|
| + }
|
| }
|
|
|
| f(o, x) => o.use(x << 1);
|
| @@ -23,4 +27,3 @@ main() {
|
| }
|
| Expect.equals(0x100000000, f(bad, 0x80000000));
|
| }
|
| -
|
|
|