From 95203e9310cbb55377357d444287b6b483b9c988 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Tue, 19 Nov 2019 23:02:35 +0300 Subject: [PATCH] FIR: unmute passing black-box tests (nested constructor resolve) --- compiler/testData/codegen/box/privateConstructors/base.kt | 1 - .../testData/codegen/box/privateConstructors/withArguments.kt | 1 - compiler/testData/codegen/box/privateConstructors/withDefault.kt | 1 - .../codegen/box/privateConstructors/withLinkedClasses.kt | 1 - compiler/testData/codegen/box/regressions/kt18779.kt | 1 - 5 files changed, 5 deletions(-) diff --git a/compiler/testData/codegen/box/privateConstructors/base.kt b/compiler/testData/codegen/box/privateConstructors/base.kt index c63ee095f2b..f856a95217b 100644 --- a/compiler/testData/codegen/box/privateConstructors/base.kt +++ b/compiler/testData/codegen/box/privateConstructors/base.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR // See also KT-6299 public open class Outer private constructor() { class Inner: Outer() diff --git a/compiler/testData/codegen/box/privateConstructors/withArguments.kt b/compiler/testData/codegen/box/privateConstructors/withArguments.kt index f6b80b3a9ce..a53517a81dd 100644 --- a/compiler/testData/codegen/box/privateConstructors/withArguments.kt +++ b/compiler/testData/codegen/box/privateConstructors/withArguments.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR // See also KT-6299 public open class Outer private constructor(val s: String, val f: Boolean = true) { class Inner: Outer("xyz") diff --git a/compiler/testData/codegen/box/privateConstructors/withDefault.kt b/compiler/testData/codegen/box/privateConstructors/withDefault.kt index c2d6af3b329..cb96e8dcb4b 100644 --- a/compiler/testData/codegen/box/privateConstructors/withDefault.kt +++ b/compiler/testData/codegen/box/privateConstructors/withDefault.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR // See also KT-6299 public open class Outer private constructor(val x: Int = 0) { class Inner: Outer() diff --git a/compiler/testData/codegen/box/privateConstructors/withLinkedClasses.kt b/compiler/testData/codegen/box/privateConstructors/withLinkedClasses.kt index 5c4eb8f072f..ff7f86f847a 100644 --- a/compiler/testData/codegen/box/privateConstructors/withLinkedClasses.kt +++ b/compiler/testData/codegen/box/privateConstructors/withLinkedClasses.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR // See also KT-6299 public open class Outer private constructor(val p: Outer?) { object First: Outer(null) diff --git a/compiler/testData/codegen/box/regressions/kt18779.kt b/compiler/testData/codegen/box/regressions/kt18779.kt index 4622a5125d9..986fc495998 100644 --- a/compiler/testData/codegen/box/regressions/kt18779.kt +++ b/compiler/testData/codegen/box/regressions/kt18779.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND_FIR: JVM_IR sealed class Result { class Failure(val exception: Exception) : Result() class Success(val message: String) : Result()