Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/incompleteConstructorInvocation.kt
T
Svetlana Isakova 808cf75060 Fixed bug: resolution task wasn't recreated
The old resolved calls were used
2014-04-30 13:34:34 +04:00

11 lines
170 B
Kotlin

package p
class X<V>(provider: () -> V, trackValue: Boolean) {
}
class B {
val c = <!NO_VALUE_FOR_PARAMETER!>X<!><String> <!TYPE_MISMATCH!>{
"e"
}<!>
}