3d8d92c7d3
- test data files renamed from *.jet to *.kt
13 lines
305 B
Kotlin
Vendored
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())
|
|
}
|