From f262f61096752f01055ced7b01c823a46164a219 Mon Sep 17 00:00:00 2001 From: Kristoffer Andersen Date: Wed, 29 Jan 2020 14:29:45 +0100 Subject: [PATCH] [JVM + IR] Fix Generic Signature Test Expectations --- .../testData/writeSignature/syntheticAccessorForGeneric.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/compiler/testData/writeSignature/syntheticAccessorForGeneric.kt b/compiler/testData/writeSignature/syntheticAccessorForGeneric.kt index 325a1ec185b..32a5720cd60 100644 --- a/compiler/testData/writeSignature/syntheticAccessorForGeneric.kt +++ b/compiler/testData/writeSignature/syntheticAccessorForGeneric.kt @@ -1,5 +1,3 @@ -// IGNORE_BACKEND: JVM_IR - class MyList { private fun noSignature(): T? = null @@ -7,7 +5,7 @@ class MyList { fun withSignature(): T? = null fun removeHeader() { - fun a () { + { noSignature() } }