Fix rendering in test output after introducing type aliases for the types used in those tests.

This commit is contained in:
Ilya Gorbunov
2016-09-01 21:55:18 +03:00
parent ed3c54dbd0
commit daac46bce5
9 changed files with 27 additions and 27 deletions
@@ -1,7 +1,7 @@
package
public fun getComp(): java.util.Comparator<Foo?>
public fun getCompInverted(): java.util.Comparator<Foo?>
public fun getComp(): kotlin.comparisons.Comparator<Foo?> /* = java.util.Comparator<Foo?> */
public fun getCompInverted(): kotlin.comparisons.Comparator<Foo?> /* = java.util.Comparator<Foo?> */
public final class Foo {
public constructor Foo(/*0*/ a: kotlin.String, /*1*/ b: kotlin.Int)