3122760c49
- All those tests already pass, they are needed to fix the behaviour of the inspection before the changes
9 lines
295 B
Kotlin
Vendored
9 lines
295 B
Kotlin
Vendored
// COMPILER_ARGUMENTS: -XXLanguage:+NewInference -XXLanguage:+SamConversionForKotlinFunctions -XXLanguage:+FunctionalInterfaceConversion -XXLanguage:-SamConversionPerArgument
|
|
// PROBLEM: none
|
|
|
|
fun test(r1: Runnable, r2: Runnable) {}
|
|
|
|
fun usage(r1: Runnable) {
|
|
test(r1, Runnable<caret> {})
|
|
}
|