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