blob: b0e419f6895de8ce181a8e42fb6f41b652f2bd83 [file]
// KIND: STANDALONE_LLDB
data class Foo(val x: Int)
fun main() {
val foo = Foo(1)
val hash = foo.hashCode() // hashCode has no source code, so the debugger shouldn't step into it.
println(hash)
}