mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
17 lines
454 B
Kotlin
Vendored
17 lines
454 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
// !CHECK_TYPE
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER, -UNUSED_VARIABLE
|
|
|
|
class TestClass {
|
|
companion object {
|
|
inline operator fun <T> invoke(task: () -> T) = task()
|
|
}
|
|
}
|
|
|
|
fun test(s: String): String {
|
|
val a = TestClass { "K" }
|
|
a checkType { _<String>() }
|
|
|
|
<!UNREACHABLE_CODE!>val b =<!> TestClass { return s }
|
|
<!UNREACHABLE_CODE!>b <!IMPLICIT_NOTHING_AS_TYPE_PARAMETER!>checkType<!> { _<Nothing>() }<!>
|
|
} |