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