From 943306f8fef3d39c9fcf6fe58d5d9ce5321fe1a2 Mon Sep 17 00:00:00 2001 From: Vladimir Sukharev Date: Tue, 2 Jan 2024 11:49:49 +0100 Subject: [PATCH] [K/N][Tests] Restore inline modifier in t59.kt test ^KT-61259 --- .../diagnostics/nativeTests/specialBackendChecks/reflect/t59.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/diagnostics/nativeTests/specialBackendChecks/reflect/t59.kt b/compiler/testData/diagnostics/nativeTests/specialBackendChecks/reflect/t59.kt index 6632ed9f05b..ded189c3172 100644 --- a/compiler/testData/diagnostics/nativeTests/specialBackendChecks/reflect/t59.kt +++ b/compiler/testData/diagnostics/nativeTests/specialBackendChecks/reflect/t59.kt @@ -2,7 +2,7 @@ import kotlin.reflect.* @OptIn(kotlin.ExperimentalStdlibApi::class) -fun > foo() { +inline fun > foo(block: () -> T) { typeOf>() }