Files
kotlin-fork/compiler/testData/cli/jvm/newInferenceImpliesProgressiveModeForNI.out
T

12 lines
645 B
Plaintext
Vendored

compiler/testData/cli/jvm/newInferenceImpliesProgressiveModeForNI.kt:6:13: warning: parameter 'x' is never used
fun bar(x: Int = 0): String = ""
^
compiler/testData/cli/jvm/newInferenceImpliesProgressiveModeForNI.kt:9:13: warning: variable 'r1' is never used
val r1 = foo(::bar)
^
compiler/testData/cli/jvm/newInferenceImpliesProgressiveModeForNI.kt:9:22: warning: candidate resolution will be changed soon, please use fully qualified name to invoke the following closer candidate explicitly '
public final fun bar(x: Int = ...): String defined in Scope'
val r1 = foo(::bar)
^
OK