Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f9ad0c0bf79eab445d91c2baa5ab471640e811f
/
.
/
native
/
native.tests
/
testData
/
lldb
/
stepThroughInlineArguments.kt
blob: eb0fd7fae70aca5751df8cb7618ab9465297f246 [
file
]
// KIND: STANDALONE_LLDB
// FIR_IDENTICAL
// 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
}