diff --git a/idea/testData/completion/keywords/NoFinalInParameterList.kt b/idea/testData/completion/keywords/NoFinalInParameterList.kt new file mode 100644 index 00000000000..9021da53b60 --- /dev/null +++ b/idea/testData/completion/keywords/NoFinalInParameterList.kt @@ -0,0 +1,5 @@ +fun foo(f + +fun test() { } + +// NUMBER: 0 diff --git a/idea/tests/org/jetbrains/jet/completion/KeywordCompletionTestGenerated.java b/idea/tests/org/jetbrains/jet/completion/KeywordCompletionTestGenerated.java index a2783bb3c6d..7465bb7f412 100644 --- a/idea/tests/org/jetbrains/jet/completion/KeywordCompletionTestGenerated.java +++ b/idea/tests/org/jetbrains/jet/completion/KeywordCompletionTestGenerated.java @@ -224,6 +224,12 @@ public class KeywordCompletionTestGenerated extends AbstractKeywordCompletionTes doTest(fileName); } + @TestMetadata("NoFinalInParameterList.kt") + public void testNoFinalInParameterList() throws Exception { + String fileName = JetTestUtils.navigationMetadata("idea/testData/completion/keywords/NoFinalInParameterList.kt"); + doTest(fileName); + } + @TestMetadata("PropertyAccessors.kt") public void testPropertyAccessors() throws Exception { String fileName = JetTestUtils.navigationMetadata("idea/testData/completion/keywords/PropertyAccessors.kt");