Skip to content

Instantly share code, notes, and snippets.

@rjmholt
Last active February 4, 2017 15:25
Show Gist options
  • Save rjmholt/2634b4cf9d1f74e78fabdfa08739b2e5 to your computer and use it in GitHub Desktop.
Save rjmholt/2634b4cf9d1f74e78fabdfa08739b2e5 to your computer and use it in GitHub Desktop.
public class Undecidable
{
class T {}
class N<Z> {}
class C<X> extends N<N<? super C<C<X>>>>
{
private N<? super C<T>> cast(C<T> c)
{
return c;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment