Fix UL classes tests

Fixed #KT-36717
This commit is contained in:
Igor Yakovlev
2020-02-19 18:59:19 +03:00
parent f47e602118
commit 4693d595b7
7 changed files with 4 additions and 104 deletions
@@ -1,7 +1,7 @@
public final class SmartSet <T> extends kotlin.collections.AbstractSet<T> implements java.util.Set<T>, kotlin.collections.MutableSet<T>, kotlin.jvm.internal.markers.KMutableSet {
private java.lang.Object data;
private int size;
private static final int ARRAY_THRESHOLD = 5;
private static final int ARRAY_THRESHOLD;
public static final SmartSet.Companion Companion;
public int getSize() { /* compiled code */ }
@@ -1,5 +1,5 @@
public final class C extends p.A implements p.I {
private final int ip = 5;
private final int ip;
public int getAp$light_idea_test_case() { /* compiled code */ }
@@ -11,40 +11,6 @@ final class null /* null*/ {
}
public final class Fun /* Fun*/ {
@null()
public Fun();
private final java.lang.Object someFun();
}
final class null /* null*/ {
private ();
}
public final class ArrayOfAnonymous /* ArrayOfAnonymous*/ {
private final java.lang.Object[] a1;
@null()
public ArrayOfAnonymous();
@org.jetbrains.annotations.NotNull()
public final java.lang.Object[] getA1();
}
final class null /* null*/ {
private static final java.lang.String fy = "text" /* initializer type: java.lang.String */ /* constant value text */;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFy();
private ();
}
final class C /* C*/ {
private final int y;
@@ -68,36 +34,6 @@ final class null /* null*/ {
}
public abstract class Super /* Super*/ {
@null()
public Super();
@org.jetbrains.annotations.Nullable()
public abstract java.lang.Object getA();
}
public final class Sub /* Sub*/ extends Super {
private final java.lang.Object[] a;
@null()
public Sub();
@org.jetbrains.annotations.NotNull()
public java.lang.Object[] getA();
}
final class null /* null*/ {
private static final java.lang.String fy = "text" /* initializer type: java.lang.String */ /* constant value text */;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFy();
private ();
}
public final class ValidPublicSupertype /* ValidPublicSupertype*/ {
private final java.lang.Runnable x;
@@ -2,20 +2,6 @@ class Prop {
private val someProp = object { }
}
class Fun {
private fun someFun() = object { }
}
class ArrayOfAnonymous {
val a1 = arrayOf(
object { val fy = "text"}
)
}
private class C(val y: Int) {
val initChild = { ->
object {
@@ -27,17 +13,6 @@ private class C(val y: Int) {
}
abstract class Super {
abstract val a: Any?
}
class Sub : Super() {
override val a = arrayOf(
object { val fy = "text"}
)
}
class ValidPublicSupertype {
val x = object : Runnable {
override fun run() {}