Minor. Rename diagnostic tests: multiDeclarations -> destructuringDeclarations

This commit is contained in:
Denis Zharkov
2016-09-15 14:07:37 +03:00
parent 3df3187e25
commit ace3655824
25 changed files with 81 additions and 81 deletions
@@ -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
}
}