blob: 8ff55ac16ed48ede49d597d76c2b2e6b4e58f761 [file] [log] [blame]
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 { "" }
}