Skip to content

Instantly share code, notes, and snippets.

@kallentu
Created December 17, 2019 17:31
Show Gist options
  • Save kallentu/61f4100766a6a7328f1fe012eb1a5b18 to your computer and use it in GitHub Desktop.
Save kallentu/61f4100766a6a7328f1fe012eb1a5b18 to your computer and use it in GitHub Desktop.
class LegacyReader<T> {}
class NewReader<out T> extends LegacyReader<T> {} // OK
class Reader<out T> {}
class IntegerReader<out T> extends Reader<T> {} // OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment