9a0c3c47c8
^KT-40700 Fixed
10 lines
209 B
Kotlin
Vendored
10 lines
209 B
Kotlin
Vendored
// PROBLEM: none
|
|
// ERROR: Unsupported [Dynamic types are not supported in this context]
|
|
|
|
fun foo() {
|
|
fun bar(f: () -> dynamic): Unit {}
|
|
bar({
|
|
val a = 1
|
|
Unit<caret>
|
|
})
|
|
} |