Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
duplicateJvmSignature
/
vararg.fir.kt
blob: 481498c275a369ca574f45f65008729a164fc768 [
file
] [
log
] [
blame
]
fun foo
(
vararg x
:
Int
)
{}
fun foo
(
x
:
IntArray
)
{}
fun foo
(
vararg x
:
Int
?)
{}
fun foo
(
x
:
Array
<
Int
>)
{}
fun foo
(
vararg nn
:
Number
)
{}
fun foo
(
nn
:
Array
<
out
Number
>)
{}