Fix regression test for KT-46962.

This commit is contained in:
Mads Ager
2021-06-01 11:00:12 +02:00
committed by Dmitry Petrov
parent 124a14c8df
commit 5d53d34d85
@@ -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 {