[IR] update testdata: IrInstanceInitializerCall
This commit is contained in:
committed by
teamcityserver
parent
26dd009713
commit
e56787c0b0
@@ -1,7 +1,7 @@
|
||||
abstract class AbstractClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
open class Base {
|
||||
constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ class Test1 : Base {
|
||||
{ // BLOCK
|
||||
super/*Base*/(x = xx, y = yy)
|
||||
}
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ class Test2 : Base {
|
||||
{ // BLOCK
|
||||
super/*Base*/(x = xx, y = yy)
|
||||
}
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
class C {
|
||||
constructor(x: Int, y: Int, z: Int = 1) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ class C {
|
||||
class NestedClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -71,7 +71,7 @@ class C {
|
||||
companion object Companion {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
class TestClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ interface TestInterface {
|
||||
object TestObject {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ annotation class TestAnnotationClass : Annotation {
|
||||
enum class TestEnumClass : Enum<TestEnumClass> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestEnumClass>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
class A : Cloneable {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ interface I : Cloneable {
|
||||
class C : I {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ class C : I {
|
||||
class OC : I {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
class Test1 {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
companion object Companion {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -19,14 +19,14 @@ class Test1 {
|
||||
class Test2 {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
companion object Named {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
data class Test1 {
|
||||
constructor(stringArray: Array<String>, charArray: CharArray, booleanArray: BooleanArray, byteArray: ByteArray, shortArray: ShortArray, intArray: IntArray, longArray: LongArray, floatArray: FloatArray, doubleArray: DoubleArray) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -168,7 +168,7 @@ dataClassArrayMemberToString(arg0 = #doubleArray) +
|
||||
data class Test2<T : Any?> {
|
||||
constructor(genericArray: Array<T>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -214,7 +214,7 @@ dataClassArrayMemberToString(arg0 = #genericArray) +
|
||||
data class Test3 {
|
||||
constructor(anyArrayN: Array<Any>?) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
data class Test1 {
|
||||
constructor(x: Int, y: String, z: Any) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ data class Test1 {
|
||||
data class Test2 {
|
||||
constructor(x: Any?) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ data class Test2 {
|
||||
data class Test3 {
|
||||
constructor(d: Double, dn: Double?, f: Float, df: Float?) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
data class Test1<T : Any?> {
|
||||
constructor(x: T) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ data class Test1<T : Any?> {
|
||||
data class Test2<T : Number> {
|
||||
constructor(x: T) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ data class Test2<T : Number> {
|
||||
data class Test3<T : Any?> {
|
||||
constructor(x: List<T>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -142,7 +142,7 @@ data class Test3<T : Any?> {
|
||||
data class Test4 {
|
||||
constructor(x: List<String>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ interface IBase<A : Any?> {
|
||||
class Test1<E : Any?> : IBase<E> {
|
||||
constructor(i: IBase<E>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -39,7 +39,7 @@ class Test1<E : Any?> : IBase<E> {
|
||||
class Test2 : IBase<String> {
|
||||
constructor(j: IBase<String>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ interface IBase {
|
||||
object BaseImpl : IBase {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ fun otherImpl(x0: String, y0: Int): IOther {
|
||||
local class <no name provided> : IOther {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ fun otherImpl(x0: String, y0: Int): IOther {
|
||||
class Test1 : IBase {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -102,7 +102,7 @@ class Test1 : IBase {
|
||||
class Test2 : IBase, IOther {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Test : J {
|
||||
constructor(j: J) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@ interface IFooBar {
|
||||
object FooBarImpl : IFooBar {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ object FooBarImpl : IFooBar {
|
||||
class C : IFooBar {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
open class Cell<T : Any?> {
|
||||
constructor(value: T) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ typealias CStr = Cell<String>
|
||||
class C1 : Cell<String> {
|
||||
constructor() /* primary */ {
|
||||
super/*Cell*/<String>(value = "O")
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ class C1 : Cell<String> {
|
||||
class C2 : Cell<String> {
|
||||
constructor() /* primary */ {
|
||||
super/*Cell*/<String>(value = "K")
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+3
-3
@@ -1,7 +1,7 @@
|
||||
open class Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -10,13 +10,13 @@ open class Base {
|
||||
class Test : Base {
|
||||
constructor() {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
constructor(xx: Int) {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+9
-9
@@ -1,7 +1,7 @@
|
||||
enum class TestEnum1 : Enum<TestEnum1> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestEnum1>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ enum class TestEnum1 : Enum<TestEnum1> {
|
||||
enum class TestEnum2 : Enum<TestEnum2> {
|
||||
private constructor(x: Int) /* primary */ {
|
||||
super/*Enum*/<TestEnum2>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ enum class TestEnum2 : Enum<TestEnum2> {
|
||||
abstract enum class TestEnum3 : Enum<TestEnum3> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestEnum3>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ abstract enum class TestEnum3 : Enum<TestEnum3> {
|
||||
private enum entry class TEST : TestEnum3 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestEnum3*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ abstract enum class TestEnum3 : Enum<TestEnum3> {
|
||||
abstract enum class TestEnum4 : Enum<TestEnum4> {
|
||||
private constructor(x: Int) /* primary */ {
|
||||
super/*Enum*/<TestEnum4>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ abstract enum class TestEnum4 : Enum<TestEnum4> {
|
||||
private enum entry class TEST1 : TestEnum4 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestEnum4*/(x = 1) /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ abstract enum class TestEnum4 : Enum<TestEnum4> {
|
||||
private enum entry class TEST2 : TestEnum4 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestEnum4*/(x = 2) /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -124,7 +124,7 @@ abstract enum class TestEnum4 : Enum<TestEnum4> {
|
||||
enum class TestEnum5 : Enum<TestEnum5> {
|
||||
private constructor(x: Int = 0) /* primary */ {
|
||||
super/*Enum*/<TestEnum5>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -151,7 +151,7 @@ fun f(): Int {
|
||||
enum class TestEnum6 : Enum<TestEnum6> {
|
||||
private constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Enum*/<TestEnum6>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+11
-11
@@ -1,7 +1,7 @@
|
||||
enum class TestFinalEnum1 : Enum<TestFinalEnum1> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestFinalEnum1>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ enum class TestFinalEnum1 : Enum<TestFinalEnum1> {
|
||||
enum class TestFinalEnum2 : Enum<TestFinalEnum2> {
|
||||
private constructor(x: Int) /* primary */ {
|
||||
super/*Enum*/<TestFinalEnum2>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ enum class TestFinalEnum2 : Enum<TestFinalEnum2> {
|
||||
enum class TestFinalEnum3 : Enum<TestFinalEnum3> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestFinalEnum3>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ enum class TestFinalEnum3 : Enum<TestFinalEnum3> {
|
||||
open enum class TestOpenEnum1 : Enum<TestOpenEnum1> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestOpenEnum1>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ open enum class TestOpenEnum1 : Enum<TestOpenEnum1> {
|
||||
private enum entry class X1 : TestOpenEnum1 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestOpenEnum1*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ open enum class TestOpenEnum1 : Enum<TestOpenEnum1> {
|
||||
open enum class TestOpenEnum2 : Enum<TestOpenEnum2> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestOpenEnum2>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -88,7 +88,7 @@ open enum class TestOpenEnum2 : Enum<TestOpenEnum2> {
|
||||
private enum entry class X1 : TestOpenEnum2 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestOpenEnum2*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -109,7 +109,7 @@ open enum class TestOpenEnum2 : Enum<TestOpenEnum2> {
|
||||
abstract enum class TestAbstractEnum1 : Enum<TestAbstractEnum1> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestAbstractEnum1>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -117,7 +117,7 @@ abstract enum class TestAbstractEnum1 : Enum<TestAbstractEnum1> {
|
||||
private enum entry class X1 : TestAbstractEnum1 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestAbstractEnum1*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -142,7 +142,7 @@ interface IFoo {
|
||||
abstract enum class TestAbstractEnum2 : Enum<TestAbstractEnum2>, IFoo {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestAbstractEnum2>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -150,7 +150,7 @@ abstract enum class TestAbstractEnum2 : Enum<TestAbstractEnum2>, IFoo {
|
||||
private enum entry class X1 : TestAbstractEnum2 {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestAbstractEnum2*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ open enum class A : Enum<A> {
|
||||
private enum entry class Y : A {
|
||||
private constructor() /* primary */ {
|
||||
super/*A*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -31,14 +31,14 @@ open enum class A : Enum<A> {
|
||||
|
||||
private constructor(arg: String) {
|
||||
super/*Enum*/<A>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
#prop1 = arg
|
||||
}
|
||||
|
||||
private constructor() {
|
||||
super/*Enum*/<A>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
#prop1 = "default"
|
||||
<this>.<set-prop3>(<set-?> = "empty")
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
enum class Test0 : Enum<Test0> {
|
||||
private constructor(x: Int) /* primary */ {
|
||||
super/*Enum*/<Test0>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ enum class Test0 : Enum<Test0> {
|
||||
enum class Test1 : Enum<Test1> {
|
||||
private constructor(x: Int) /* primary */ {
|
||||
super/*Enum*/<Test1>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ enum class Test1 : Enum<Test1> {
|
||||
abstract enum class Test2 : Enum<Test2> {
|
||||
private constructor(x: Int) /* primary */ {
|
||||
super/*Enum*/<Test2>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ abstract enum class Test2 : Enum<Test2> {
|
||||
private enum entry class ZERO : Test2 {
|
||||
private constructor() /* primary */ {
|
||||
super/*Test2*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ abstract enum class Test2 : Enum<Test2> {
|
||||
private enum entry class ONE : Test2 {
|
||||
private constructor() /* primary */ {
|
||||
super/*Test2*/(x = 1) /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Test : Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+9
-9
@@ -6,7 +6,7 @@ interface IFoo {
|
||||
class K1 : JFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*JFoo*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class K1 : JFoo {
|
||||
class K2 : JFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*JFoo*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ class K2 : JFoo {
|
||||
class K3 : JUnrelatedFoo, IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*JUnrelatedFoo*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ class K3 : JUnrelatedFoo, IFoo {
|
||||
class K4 : JUnrelatedFoo, IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*JUnrelatedFoo*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ class K4 : JUnrelatedFoo, IFoo {
|
||||
class TestJFoo : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ class TestJFoo : IFoo {
|
||||
class TestK1 : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ class TestK1 : IFoo {
|
||||
class TestK2 : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -92,7 +92,7 @@ class TestK2 : IFoo {
|
||||
class TestK3 : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -106,7 +106,7 @@ class TestK3 : IFoo {
|
||||
class TestK4 : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+6
-6
@@ -1,7 +1,7 @@
|
||||
class Test1 {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ class Test1 {
|
||||
class Test2 {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ class Test3 {
|
||||
|
||||
constructor() {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@ class Test4 {
|
||||
|
||||
constructor() {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ class Test4 {
|
||||
class Test5 {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ class Test5 {
|
||||
inner class TestInner {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
class TestInitValFromParameter {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ class TestInitValFromParameter {
|
||||
class TestInitValInClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ class TestInitValInClass {
|
||||
class TestInitValInInitBlock {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class TestInitValInLambdaCalledOnce {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+6
-6
@@ -1,7 +1,7 @@
|
||||
class TestInitVarFromParameter {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class TestInitVarFromParameter {
|
||||
class TestInitVarInClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ class TestInitVarInClass {
|
||||
class TestInitVarInInitBlock {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ class TestInitVarInInitBlock {
|
||||
class TestInitVarWithCustomSetter {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ class TestInitVarWithCustomSetterWithExplicitCtor {
|
||||
|
||||
constructor() {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -87,7 +87,7 @@ class TestInitVarWithCustomSetterInCtor {
|
||||
|
||||
constructor() {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
<this>.<set-x>(value = 42)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
inline class Test {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class C<T : Any?> {
|
||||
constructor(t: T) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class C<T : Any?> {
|
||||
inline class IC<TT : Any?> {
|
||||
constructor(c: C<TT>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,14 +1,14 @@
|
||||
class Outer {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
open inner class TestInnerClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ class Outer {
|
||||
inner class DerivedInnerClass : TestInnerClass {
|
||||
constructor() /* primary */ {
|
||||
<this>.super/*TestInnerClass*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,14 +1,14 @@
|
||||
class Outer {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
inner class Inner {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
data class TestData {
|
||||
constructor(nn: Nothing?) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ data class TestData {
|
||||
inline class TestInline {
|
||||
constructor(nn: Nothing?) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -4,7 +4,7 @@ data class A {
|
||||
}
|
||||
) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ data class B {
|
||||
local class <no name provided> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ data class B {
|
||||
<no name provided>()
|
||||
}) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ fun outer() {
|
||||
local class LocalClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ val test1: Any
|
||||
local class <no name provided> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ val test2: IFoo
|
||||
local class <no name provided> : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -40,14 +40,14 @@ val test2: IFoo
|
||||
class Outer {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
abstract inner class Inner : IFoo {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ class Outer {
|
||||
local class <no name provided> : Inner {
|
||||
constructor() /* primary */ {
|
||||
<this>.super/*Inner*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -79,7 +79,7 @@ fun Outer.test4(): Inner {
|
||||
local class <no name provided> : Inner {
|
||||
constructor() /* primary */ {
|
||||
<this>.super/*Inner*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
abstract class Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ abstract class Base {
|
||||
object Test : Base {
|
||||
private constructor() /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Outer {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ class Outer {
|
||||
inner class Inner {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ class Outer {
|
||||
inner class Inner2 {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Test1 {
|
||||
constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Test1 {
|
||||
class Test2 {
|
||||
constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ class Test2 {
|
||||
class Test3 {
|
||||
constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
open class Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ open class Base {
|
||||
class TestImplicitPrimaryConstructor : Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ class TestImplicitPrimaryConstructor : Base {
|
||||
class TestExplicitPrimaryConstructor : Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ class TestExplicitPrimaryConstructor : Base {
|
||||
class TestWithDelegatingConstructor : Base {
|
||||
constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ interface IRight {
|
||||
class CBoth : ILeft, IRight {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
sealed class Expr {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
class Const : Expr {
|
||||
constructor(number: Double) /* primary */ {
|
||||
super/*Expr*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ sealed class Expr {
|
||||
class Sum : Expr {
|
||||
constructor(e1: Expr, e2: Expr) /* primary */ {
|
||||
super/*Expr*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@ sealed class Expr {
|
||||
object NotANumber : Expr {
|
||||
private constructor() /* primary */ {
|
||||
super/*Expr*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+4
-4
@@ -1,7 +1,7 @@
|
||||
open class Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ class TestProperty : Base {
|
||||
|
||||
constructor() {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -30,13 +30,13 @@ class TestInitBlock : Base {
|
||||
|
||||
constructor() {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
constructor(z: Any) {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ class C {
|
||||
|
||||
constructor(x: Int) {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
open class Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ open class Base {
|
||||
class Derived : Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
open class Base {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ interface BaseI {
|
||||
class Derived : Base, BaseI {
|
||||
constructor() /* primary */ {
|
||||
super/*Base*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ interface IFoo {
|
||||
class DFoo : IFoo {
|
||||
constructor(d: IFoo) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ annotation class A : Annotation {
|
||||
class C {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+5
-5
@@ -10,7 +10,7 @@ annotation class TestAnn : Annotation {
|
||||
class TestClass {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ interface TestInterface {
|
||||
object TestObject {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ object TestObject {
|
||||
class Host {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ class Host {
|
||||
companion object TestCompanion {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ class Host {
|
||||
enum class TestEnum : Enum<TestEnum> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestEnum>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ class TestClass {
|
||||
@TestAnn(x = 1)
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ annotation class A : Annotation {
|
||||
class Cell {
|
||||
constructor(value: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -9,7 +9,7 @@ annotation class TestAnn : Annotation {
|
||||
open enum class TestEnum : Enum<TestEnum> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<TestEnum>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ open enum class TestEnum : Enum<TestEnum> {
|
||||
private enum entry class ENTRY2 : TestEnum {
|
||||
private constructor() /* primary */ {
|
||||
super/*TestEnum*/() /*~> Unit */
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
enum class En : Enum<En> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<En>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ annotation class Ann : Annotation {
|
||||
class Test {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ annotation class A : Annotation {
|
||||
class C {
|
||||
constructor(x: Int, y: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -11,7 +11,7 @@ var p: Int
|
||||
class C {
|
||||
constructor(p: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -6,7 +6,7 @@ annotation class Ann : Annotation {
|
||||
class A {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ fun testFun(x: Int) {
|
||||
class TestClassConstructor1 {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class C {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ val test1: Int /* by */
|
||||
class C {
|
||||
constructor(map: MutableMap<String, Any>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ var String.test2: Int
|
||||
class Host {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ interface IBar {
|
||||
abstract class CFoo<T : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ abstract class CFoo<T : Any?> {
|
||||
class Test1 : CFoo<String>, IFooStr, IBar {
|
||||
constructor() /* primary */ {
|
||||
super/*CFoo*/<String>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class C<T : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ class C<T : Any?> {
|
||||
object Delegate {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
inline class IT {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ inline class IT {
|
||||
inline class InlineMutableSet : MutableSet<IT> {
|
||||
constructor(ms: MutableSet<IT>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package interop
|
||||
object Definitions {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ interface I {
|
||||
class A : I {
|
||||
constructor(i: I) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ fun outer() {
|
||||
local abstract class ALocal {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ fun outer() {
|
||||
local class Local : ALocal {
|
||||
constructor() /* primary */ {
|
||||
super/*ALocal*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -14,7 +14,7 @@ expect open class B : A {
|
||||
abstract class A {
|
||||
protected constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ abstract class A {
|
||||
open class B : A {
|
||||
constructor(i: Int) /* primary */ {
|
||||
super/*A*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ expect enum class MyEnum : Enum<MyEnum> {
|
||||
enum class MyEnum : Enum<MyEnum> {
|
||||
private constructor() /* primary */ {
|
||||
super/*Enum*/<MyEnum>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -11,7 +11,7 @@ expect class Add : Ops {
|
||||
sealed class Ops {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ sealed class Ops {
|
||||
class Add : Ops {
|
||||
constructor() /* primary */ {
|
||||
super/*Ops*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -8,14 +8,14 @@ interface TestInterface<T : Any?> {
|
||||
class Test<T0 : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
class TestNested<T1 : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@ class Test<T0 : Any?> {
|
||||
inner class TestInner<T2 : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Test1<T1 : Any?, T2 : Any?> {
|
||||
constructor(x: T1, y: T2) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Test1<T1 : Any?, T2 : Any?> {
|
||||
class Test2 {
|
||||
constructor(x: Int, y: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ class Test2 {
|
||||
inner class TestInner<Z : Any?> {
|
||||
constructor(z: Z) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -48,7 +48,7 @@ class Test2 {
|
||||
class Test3 {
|
||||
constructor(x: Int, y: String = "") /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -65,7 +65,7 @@ class Test3 {
|
||||
class Test4<T : Any?> {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
data class Test<T : Any?> {
|
||||
constructor(x: T, y: String = "") /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -10,7 +10,7 @@ var test2: Int
|
||||
class Host {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ class Host {
|
||||
class InPrimaryCtor<T : Any?> {
|
||||
constructor(testInPrimaryCtor1: T, testInPrimaryCtor2: Int = 42) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ interface IBase<T : Any?> {
|
||||
class Test<TT : Any?> : IBase<TT> {
|
||||
constructor(impl: IBase<TT>) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ fun String.textExt1(i: Int, j: String) {
|
||||
class Host {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,14 +1,14 @@
|
||||
class Outer<T1 : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
inner class Inner<T2 : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -37,7 +37,7 @@ var <T : Any?> T.testExt4: Int
|
||||
class Host<T : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Test1<T : U, U : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
abstract class Base1<T : Derived1> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ abstract class Base1<T : Derived1> {
|
||||
class Derived1 : Base1<Derived1> {
|
||||
constructor() /* primary */ {
|
||||
super/*Base1*/<Derived1>()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ class Derived1 : Base1<Derived1> {
|
||||
abstract class Base2 {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ abstract class Base2 {
|
||||
class Derived2 : Base2 {
|
||||
constructor() /* primary */ {
|
||||
super/*Base2*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Test {
|
||||
constructor(x: Int = 0) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class C {
|
||||
constructor(test1: Int, test2: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class MyClass {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Delegate {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Delegate {
|
||||
class DelegateProvider {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class MyClass {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Delegate {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Delegate {
|
||||
class DelegateProvider {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ class DelegateProvider {
|
||||
class Host {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,14 +1,14 @@
|
||||
object Host {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
class StringDelegate {
|
||||
constructor(s: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Delegate {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ class Delegate {
|
||||
class DelegateProvider {
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ fun foo() {
|
||||
class C {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class C {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ fun bar(): Int {
|
||||
class C {
|
||||
constructor(x: IntArray) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Ref {
|
||||
constructor(x: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class A {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class Host {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class A {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -4,7 +4,7 @@ fun use(f: @ExtensionFunctionType Function2<C, Int, Unit>) {
|
||||
class C {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -3,14 +3,14 @@ package test
|
||||
class Foo<T : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
inner class Inner<P : Any?> {
|
||||
constructor(a: T, b: P) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -10,7 +10,7 @@ fun interface IFoo2 : IFoo {
|
||||
object A {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ object A {
|
||||
object B {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
+3
-3
@@ -5,7 +5,7 @@ fun use(fn: Function1<Int, Any>): Any {
|
||||
class C {
|
||||
constructor(vararg xs: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
@@ -14,14 +14,14 @@ class C {
|
||||
class Outer {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
inner class Inner {
|
||||
constructor(vararg xs: Int) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ fun varargs(vararg xs: String): Int {
|
||||
class C {
|
||||
constructor(x: String = "") /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
class A<T : Any?> {
|
||||
constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package test
|
||||
object Foo {
|
||||
private constructor() /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ fun foo(x: String = ""): String {
|
||||
class C {
|
||||
constructor(x: String = "") /* primary */ {
|
||||
super/*Any*/()
|
||||
/* InstanceInitializerCall */
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user