Fix regression test for KT-46962.
This commit is contained in:
@@ -2,16 +2,15 @@
|
||||
// JVM_TARGET: 1.8
|
||||
// SAM_CONVERSIONS: INDY
|
||||
// WITH_RUNTIME
|
||||
// FULL_JDK
|
||||
|
||||
// CHECK_BYTECODE_TEXT
|
||||
// JVM_IR_TEMPLATES
|
||||
// 0 java/lang/invoke/LambdaMetafactory
|
||||
|
||||
fun interface Consumer {
|
||||
fun foo(s: String)
|
||||
}
|
||||
import java.util.function.Consumer
|
||||
|
||||
fun call(c: Consumer) {
|
||||
fun call(c: Consumer<String>) {
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
|
||||
Reference in New Issue
Block a user