d72e55d1b7
#KT-18536 Fixed
7 lines
272 B
Kotlin
Vendored
7 lines
272 B
Kotlin
Vendored
// "Make private and implements 'getName'" "true"
|
|
// DISABLE-ERRORS
|
|
class A(private val name: String) : JavaInterface {
|
|
override fun getName(): String {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |