Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
overload
/
SyntheticAndNotSynthetic.kt
blob: 8da433e42df5fe155a2c3f80b5cae2236a6b0d60 [
file
]
// FIR_IDENTICAL
fun
Runnable
(
f
:
()
->
Unit
):
Runnable
=
object
:
Runnable
{
public
override
fun run
()
{
f
()
}
}
val x
=
Runnable
{
}