Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt287.kt
T
Andrey Breslav 3d8d92c7d3 JetDiagnosticsTest migrated to TestGenerator
- test data files renamed from *.jet to *.kt
2012-07-10 14:48:11 +04:00

13 lines
305 B
Kotlin
Vendored

// KT-287 Infer constructor type arguments
import java.util.*
fun attributes() : Map<String, String> = HashMap() // Should be inferred;
val attributes : Map<String, String> = HashMap() // Should be inferred;
fun foo(<!UNUSED_PARAMETER!>m<!> : Map<String, String>) {}
fun test() {
foo(HashMap())
}