Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
inspectionsLocal
/
replaceArrayOfWithLiteral
/
noArray.kt
blob: 84bdfee99b06f42e517670a86deff721f2039480 [
file
] [
log
] [
blame
]
// LANGUAGE_VERSION: 1.2
// PROBLEM: none
// ERROR: Type mismatch: inferred type is Int but Array<String> was expected
annotation
class
Some
(
val arg
:
Array
<
String
>)
fun create
(
x
:
Int
)
=
x
@Some
(
arg
=
<caret>
create
(
123
))
class
My