// "Create member function 'SomeObj.doSomething'" "true" class SomeObj { fun doSomething() { TODO("Not yet implemented") } } fun doSomething(p: Any): List{ if (p is SomeObj){ p.doSomething() } return emptyList() }