<@U0JD6PCRW> Try this ``` interface Foo { fun som...
# announcements
i
@viddi Try this
Copy code
interface Foo {
	fun something(): Observable<out Foo>
}

class Bar(): Foo {
	override fun something(): Observable<Bar>
}