Files
kotlin-fork/idea/testData/intentions/convertFunctionToProperty/existingPropertyJavaConflict.kt
T
2015-02-05 23:12:38 +03:00

6 lines
119 B
Kotlin
Vendored

// SHOULD_FAIL_WITH: Method J.getFoo() already exists
package test
open class A {
open fun <caret>foo(): Int = 1
}