Minor. Rename diagnostic tests: multiDeclarations -> destructuringDeclarations
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
package
|
||||
|
||||
package test {
|
||||
public fun a(/*0*/ s: kotlin.String): kotlin.Unit
|
||||
public fun b(/*0*/ s: kotlin.String): kotlin.Unit
|
||||
public fun println(/*0*/ a: kotlin.Any?): kotlin.Any?
|
||||
|
||||
public final data class Pair</*0*/ A, /*1*/ B> {
|
||||
public constructor Pair</*0*/ A, /*1*/ B>(/*0*/ a: A, /*1*/ b: B)
|
||||
public final val a: A
|
||||
public final val b: B
|
||||
public final operator /*synthesized*/ fun component1(): A
|
||||
public final operator /*synthesized*/ fun component2(): B
|
||||
public final /*synthesized*/ fun copy(/*0*/ a: A = ..., /*1*/ b: B = ...): test.Pair<A, B>
|
||||
public open override /*1*/ /*synthesized*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*synthesized*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*synthesized*/ fun toString(): kotlin.String
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user