Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
ir
/
irText
/
declarations
/
defaultArguments.kt
blob: 0876934ebff384db7c3f49b43cc135e3b9a57e7c [
file
]
// FIR_IDENTICAL
fun test1
(
x
:
Int
,
y
:
Int
=
0
,
z
:
String
=
"abc"
)
{
fun
local
(
xx
:
Int
=
x
,
yy
:
Int
=
y
,
zz
:
String
=
z
)
{}
}