Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
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
)
}