blob: 56076178751b83b46a99f0892194c9781cb567ae [file]
// 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"
}