| Index: tests/language_strong/type_propagation3_test.dart
|
| diff --git a/tests/language_strong/type_propagation3_test.dart b/tests/language_strong/type_propagation3_test.dart
|
| index e17e95e637ea679bf305f9cd203b220e02c61746..2848f9b54342f3354da44328e7c26aed88b71cd6 100644
|
| --- a/tests/language_strong/type_propagation3_test.dart
|
| +++ b/tests/language_strong/type_propagation3_test.dart
|
| @@ -46,7 +46,8 @@ main() {
|
| // (1, 5)
|
|
|
| var b = a;
|
| - while (b.isEmpty) { // (4, 6)
|
| + while (b.isEmpty) {
|
| + // (4, 6)
|
| b.foo(); // (3, 7)
|
| b.bar(); // (8)
|
| b = b.doIt(); // (2)
|
|
|