Skip to content

Instantly share code, notes, and snippets.

@arkivanov
Created May 10, 2019 15:58
Show Gist options
  • Save arkivanov/ded7aa7814acc725aaeb72aab5cc9920 to your computer and use it in GitHub Desktop.
Save arkivanov/ded7aa7814acc725aaeb72aab5cc9920 to your computer and use it in GitHub Desktop.
Reaktive variance example 1
fun foo() {
val source: Observable<String> = observableOf("Hello")
bar(source) // No error
}
fun bar(source: Observable<CharSequence>) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment