Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
addForLoopIndices
/
inapplicableOverridenFunction.kt
blob: 5ce28ace4b3ae07a68968b3d6cedfc52bacba6c7 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: FALSE
fun
String
.
withIndex
():
Int
=
42
fun foo
(
s
:
String
)
{
for
(<
caret
>
a
in
s
)
{
}
}