6 lines
82 B
Kotlin
Vendored
6 lines
82 B
Kotlin
Vendored
class C(x: Any?) {
|
|
val s: String?
|
|
init {
|
|
s = x?.toString()
|
|
}
|
|
} |