Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertPropertyToFunction
/
existingFunConflict.kt
blob: f9ae90fb4b747b8a0da9744aace06350fa13f022 [
file
] [
log
] [
blame
]
// SHOULD_FAIL_WITH: Function foo() on A already exists
class
A
(
val n
:
Int
)
{
val
<caret>
foo
:
Boolean
=
n
>
1
}
fun A
.
foo
()
=
1