7 lines
114 B
Kotlin
7 lines
114 B
Kotlin
package test
|
|
|
|
open class TwoSetters() {
|
|
open fun setSize(p0: String?) { }
|
|
open fun setSize(p0: Int) { }
|
|
}
|