Skip to content

Instantly share code, notes, and snippets.

@kallentu
Created December 17, 2019 17:33
Show Gist options
  • Save kallentu/4103246caed996d45e23a236ee2e32de to your computer and use it in GitHub Desktop.
Save kallentu/4103246caed996d45e23a236ee2e32de to your computer and use it in GitHub Desktop.
class ReaderWriter<inout T> {}
class NewReaderWriter<inout T> extends LegacyReader<T> {} // OK
class IntegerReaderWriter<inout T> extends Reader<T> {} // OK
class StringReaderWriter<inout T> extends Writer<T> {} // OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment