mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
7 lines
179 B
Kotlin
Vendored
7 lines
179 B
Kotlin
Vendored
// KT-7383 Assertion failed when a star-projection of function type is used
|
|
|
|
fun foo() {
|
|
val f : Function1<*, *> = { x -> x.toString() }
|
|
<!MEMBER_PROJECTED_OUT!>f<!>(1)
|
|
}
|