| Index: tests/compiler/dart2js_extra/variable_type_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/variable_type_test.dart b/tests/compiler/dart2js_extra/variable_type_test.dart
|
| index 58454fce032da65faa057569326c18a0c8f14b00..067835f2787a069f9d8bbf2f8911fe165a2a2dfc 100644
|
| --- a/tests/compiler/dart2js_extra/variable_type_test.dart
|
| +++ b/tests/compiler/dart2js_extra/variable_type_test.dart
|
| @@ -3,11 +3,11 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| int foo(int i) {
|
| - i = 'fisk'; /// 01: static type warning
|
| - return 'kat'; /// 02: static type warning, dynamic type error
|
| + i = 'fisk'; // /// 01: static type warning
|
| + return 'kat'; // /// 02: static type warning, dynamic type error
|
| }
|
|
|
| main() {
|
| foo(42);
|
| - foo('hest'); /// 03: static type warning
|
| + foo('hest'); // /// 03: static type warning
|
| }
|
|
|