Created
May 15, 2016 14:13
-
-
Save cattaka/be6dc4fde76a379b0cdcb266c197d1cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class CanNotCompileThisGenerics { | |
| static class AbsScrambleAdapter<A extends AbsScrambleAdapter<A, T>, T> { | |
| } | |
| static class IViewHolderFactory<A extends AbsScrambleAdapter<A, ?>> { | |
| } | |
| static class ScrambleAdapter<T> extends AbsScrambleAdapter<ScrambleAdapter<T>, T> { | |
| } | |
| static class AbsViewHolderFactory extends IViewHolderFactory<ScrambleAdapter<?>> { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment