| Index: pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| index 6382e35a6e1816311264f2f238df7b34da121922..3b6e0f9f1873e7d2f073973744a3bd0ccfc4a3a1 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| @@ -2166,6 +2166,12 @@ int myFunc() {}
|
| assertSuggestClass('int');
|
| }
|
|
|
| + test_ForStatement_initializer_variableName_afterType() async {
|
| + addTestSource('main() { for (String ^) }');
|
| + await computeSuggestions();
|
| + assertNotSuggested('int');
|
| + }
|
| +
|
| test_ForStatement_typing_inKeyword() async {
|
| addTestSource('main() { for (var v i^) }');
|
| await computeSuggestions();
|
|
|