diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCompiler.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCompiler.kt index 0f5197e38b4..0f0de0ad211 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCompiler.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestCompiler.kt @@ -176,9 +176,6 @@ internal sealed interface TestCompilationResult { is DependencyFailures -> fail { describeDependencyFailures() } } - val TestCompilationResult.resultingArtifact: File - get() = assertSuccess().resultingArtifact - private fun Failure.describeFailure() = when (this) { is CompilerFailure -> "Compilation failed.\n\n$loggedData" is UnexpectedFailure -> "Compilation failed with unexpected exception.\n\n$loggedData"