Skip to content

Instantly share code, notes, and snippets.

@smarter
Created March 31, 2016 12:05
Show Gist options
  • Save smarter/8ccbd9e8e6cad997eb294c7d18361f1f to your computer and use it in GitHub Desktop.
Save smarter/8ccbd9e8e6cad997eb294c7d18361f1f to your computer and use it in GitHub Desktop.
public class A {
interface B {};
public static <T extends A & B> T foo() {
return null;
}
public static void main(String[] args) {
B b = foo();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment