Files
kotlin-fork/compiler/testData/diagnostics/tests/callableReference/kt37530.txt
T
Pavel Kirpichenkov a416fde814 [NI] Move abstract class instantiation check to call checkers
This way the check works for callable reference arguments.
Also candidate applicability during resolution does not change compared to the old inference.
^KT-37530 Fixed
2020-03-31 12:04:01 +03:00

12 lines
417 B
Plaintext
Vendored

package
public fun </*0*/ D> create(/*0*/ fn: () -> D): D
public fun main(): kotlin.Unit
public abstract class Abstract {
public constructor Abstract()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}