Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
c234f72ea4dcebd1ff29c5a1fcd540f29a83be46
/
.
/
native
/
native.tests
/
testData
/
lldb
/
inlineArgs.kt
blob: 5553d31407d9df761bb0efb7d948fb65cde9dd22 [
file
]
// KIND: STANDALONE_LLDB
// FIR_IDENTICAL
inline
fun foo
(
x
:
Int
,
y
:
Int
,
z
:
Int
=
5
)
{
x
+
y
}
fun bar
()
=
24
fun main
(
args
:
Array
<
String
>)
{
val x
=
42
foo
(
1
,
bar
())
}