mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Feature list: - bound callable references - local delegated properties - coroutines. #KT-16017 Fixed
17 lines
208 B
Kotlin
Vendored
17 lines
208 B
Kotlin
Vendored
typealias Foo = Int
|
|
|
|
sealed class A
|
|
data class B(val foo: Int): A()
|
|
|
|
inline val f get() = ""
|
|
|
|
suspend fun test() {
|
|
""::class
|
|
""::toString
|
|
|
|
Foo::class
|
|
Foo::toString
|
|
|
|
val b by lazy { "" }
|
|
}
|