a5a13b74f5
#KT-24069 Fixed
14 lines
331 B
Plaintext
Vendored
14 lines
331 B
Plaintext
Vendored
// "Create member function 'SomeObj.doSomething'" "true"
|
|
class SomeObj {
|
|
fun doSomething() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|
|
|
|
fun doSomething(p: Any): List<Number>{
|
|
if (p is SomeObj){
|
|
p.doSomething()
|
|
|
|
}
|
|
return emptyList()
|
|
} |