| Index: tests/language/bit_operations_test.dart | 
| diff --git a/tests/language/bit_operations_test.dart b/tests/language/bit_operations_test.dart | 
| index bbc17bdc0a92169565c50ff83ac9d144e608e351..a9dd64511b3bf292cd629280f047da8a98627890 100644 | 
| --- a/tests/language/bit_operations_test.dart | 
| +++ b/tests/language/bit_operations_test.dart | 
| @@ -93,19 +93,19 @@ void testLeftShift64Bit() { | 
| Expect.equals(0xffffffff, t << 0); | 
| Expect.equals(0x1fffffffe, t << 1); | 
| Expect.equals(0x7fffffff80000000, t << 31); | 
| -  Expect.equals(0x10000000000000000, 2*(t+1) << 31); /// 01: static type warning | 
| -  Expect.equals(0x20000000000000000, 4*(t+1) << 31); /// 02: static type warning | 
| +  Expect.equals(0x10000000000000000, 2*(t+1) << 31); //# 01: static type warning | 
| +  Expect.equals(0x20000000000000000, 4*(t+1) << 31); //# 02: static type warning | 
| Expect.equals(0x8000000000000000, (t+1) << 31); | 
| } | 
|  | 
| void testLeftShift64BitWithOverflow1() { | 
| var t = 0xffffffff; | 
| -  Expect.equals(0x10000000000000000, 2*(t+1) << 31); /// 03: static type warning | 
| +  Expect.equals(0x10000000000000000, 2*(t+1) << 31); //# 03: static type warning | 
| } | 
|  | 
| void testLeftShift64BitWithOverflow2() { | 
| var t = 0xffffffff; | 
| -  Expect.equals(0x20000000000000000, 4*(t+1) << 31); /// 04: static type warning | 
| +  Expect.equals(0x20000000000000000, 4*(t+1) << 31); //# 04: static type warning | 
| } | 
|  | 
| void testLeftShift64BitWithOverflow3() { | 
|  |