Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1fbe2c8085532ef2fa66bf26fdf2b04c5cca97
/
.
/
native
/
native.tests
/
testData
/
lldb
/
stepIntoSyntheticFunction.kt
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
)
}