4d9b19da82
#KT-18539 Fixed
7 lines
200 B
Kotlin
Vendored
7 lines
200 B
Kotlin
Vendored
// "Make private and implements 'getName'" "true"
|
|
// DISABLE-ERRORS
|
|
class A(private val name: String) : JavaInterface {
|
|
override fun getName(): String {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |