Files
2024-01-26 15:54:41 +00:00

13 lines
241 B
Kotlin
Vendored

// KIND: STANDALONE_LLDB
// FIR_IDENTICAL
fun main(args: Array<String>) {
val point = Point(1, 2)
val person = Person()
return
}
data class Point(val x: Int, val y: Int)
class Person {
override fun toString() = "John Doe"
}