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

6 lines
114 B
Kotlin
Vendored

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