Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceAddWithPlusAssign
/
nonCollection.kt
blob: 0636bac0d75d213c6036d5d55dfd078b278c950e [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
class
A
{
fun add
(
x
:
Int
)
{
}
}
fun foo
()
{
A
().<
caret
>
add
(
1
)
}