Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertParameterToReceiver
/
localObjectWithFunctionNameConflict.kt
blob: b9c613c361b97305171542cf30cd239e03bed823 [
file
] [
log
] [
blame
]
// SHOULD_FAIL_WITH: Parameter reference can't be safely replaced with this@foo since @foo is ambiguous in this context
fun foo
(<
caret
>
bar
:
Int
)
{
object
{
fun foo
()
{
bar
+
1
}
}
}