Fix conversion of destructuring declarations

This commit is contained in:
Dmitry Jemerov
2017-09-13 12:58:58 +02:00
parent 40daeb13d1
commit b638febc41
5 changed files with 38 additions and 4 deletions
@@ -0,0 +1,7 @@
public final class DestructuringDeclarationKt {
public static final fun foo() : void {
var var268d4034: kotlin.Pair<? extends java.lang.String,? extends java.lang.Integer> = "foo" <other> 1
var a: <ErrorType> = var268d4034.<anonymous class>()
var b: <ErrorType> = var268d4034.<anonymous class>()
}
}