7b89b28015
This reverts commit ebbfc4a3845159ba8f0e3d94a5f70489c348c403.
18 lines
644 B
Plaintext
Vendored
18 lines
644 B
Plaintext
Vendored
public final class LocalDeclarationsKt {
|
|
public static final fun foo() : boolean {
|
|
public static final class Local {
|
|
public fun LocalDeclarationsKt$foo$Local() = UastEmptyExpression
|
|
}
|
|
var bar: <ErrorType> = fun () {
|
|
<init>()
|
|
}
|
|
var baz: kotlin.jvm.functions.Function0<? extends kotlin.Unit> = fun () {
|
|
<init>()
|
|
}
|
|
var someLocalFun: kotlin.jvm.functions.Function2<? super java.lang.Integer,? super java.lang.String,? extends java.lang.Integer> = fun (var text: java.lang.String) {
|
|
42
|
|
}
|
|
return bar() == <init>()
|
|
}
|
|
}
|