| Index: dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/warnings.dart b/dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| index 212df609b1b0cddff3f752b0fc0bf8c8cf17b179..3aede58be861ef63fb19b4b3c894ee3034468026 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| @@ -1497,7 +1497,7 @@ main() {}
|
| class Class {
|
| method();
|
| }
|
| -main() => new Class();
|
| +main() => new Class().method();
|
| """]);
|
|
|
| static const MessageKind ABSTRACT_GETTER = const MessageKind(
|
| @@ -1722,7 +1722,7 @@ main() {
|
| howToFix: DONT_KNOW_HOW_TO_FIX,
|
| examples: const ["""
|
| main() {
|
| - print(ç);
|
| + String x = ç;
|
| }
|
| """]);
|
|
|
|
|