Rename compiler key -Xno-check-impl to -Xno-check-actual

This commit is contained in:
Stanislav Erokhin
2017-09-15 15:00:43 +03:00
parent 2fe7cc5534
commit 7982f3489e
7 changed files with 9 additions and 9 deletions
@@ -5,6 +5,6 @@ Output:
-- JVM --
Exit code: COMPILATION_ERROR
Output:
compiler/testData/multiplatform/simpleNoImplKeywordOnTopLevelFunction/jvm.kt:3:1: error: declaration should be marked with 'impl' (suppress with -Xno-check-impl)
compiler/testData/multiplatform/simpleNoImplKeywordOnTopLevelFunction/jvm.kt:3:1: error: declaration should be marked with 'actual' (suppress with -Xno-check-actual)
fun foo(s: String): Array<CharSequence?> = arrayOf(s)
^