6 lines
119 B
Kotlin
Vendored
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
|
|
} |