Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
native
/
native.tests
/
testData
/
lldb
/
stepThroughInlineArguments.kt
blob: 3760b18b2e9072baca0cfaf7cb728bab0528395d [
file
]
// KIND: STANDALONE_LLDB
// FILE: main.kt
fun bar
(
x
:
Int
):
Int
{
val res
=
foo
(
x
*
2
,
x
+
2
)
return
res
}
fun main
()
{
println
(
bar
(
42
))
}
// FILE: lib.kt
inline
fun foo
(
x
:
Int
,
y
:
Int
):
Int
{
return
x
+
y
}