From 0cebf2b39f3fc95875da5e23f2d1977208f9cb47 Mon Sep 17 00:00:00 2001 From: Kirill Rakhman Date: Mon, 8 Jan 2024 17:05:05 +0100 Subject: [PATCH] [Tests] Remove irrelevant code from test --- .../notNullAssertions/assertionForNotNullCaptured.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/compiler/testData/codegen/bytecodeText/notNullAssertions/assertionForNotNullCaptured.kt b/compiler/testData/codegen/bytecodeText/notNullAssertions/assertionForNotNullCaptured.kt index 3633b5db67b..53c8d0efeb5 100644 --- a/compiler/testData/codegen/bytecodeText/notNullAssertions/assertionForNotNullCaptured.kt +++ b/compiler/testData/codegen/bytecodeText/notNullAssertions/assertionForNotNullCaptured.kt @@ -1,7 +1,3 @@ -class A { - fun add(element: T) {} -} - public fun foo(x: MutableCollection, block: java.util.AbstractList) { x.add(block.get(0)) }