blob: 8cb37fc6d496540101944248d9b40e38f1d18002 [file]
// KIND: STANDALONE_LLDB
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"
}