| Index: tests/language/callable_test.dart
|
| diff --git a/tests/language/callable_test.dart b/tests/language/callable_test.dart
|
| index be43bfbfc23b70d56945fa41af1d4802be15adef..b78fdcdeabe3f889d3e92f6d97c41be175d75bb8 100644
|
| --- a/tests/language/callable_test.dart
|
| +++ b/tests/language/callable_test.dart
|
| @@ -19,7 +19,7 @@ main() {
|
| Y y = new Y();
|
| Function g = y; // Should pass checked mode test
|
| F f0 = y; // Should pass checked mode test
|
| - F f1 = x; /// 00: dynamic type error, static type warning
|
| - G g0 = y; /// 01: dynamic type error, static type warning
|
| + F f1 = x; // /// 00: dynamic type error, static type warning
|
| + G g0 = y; // /// 01: dynamic type error, static type warning
|
| }
|
|
|
|
|