Skip to content

Instantly share code, notes, and snippets.

@WillDignazio
Created October 26, 2015 18:25
Show Gist options
  • Save WillDignazio/6dc2f7745ae67a5972d4 to your computer and use it in GitHub Desktop.
Save WillDignazio/6dc2f7745ae67a5972d4 to your computer and use it in GitHub Desktop.
Generic Array Wishful Thinking
public class GenericArray {
public static void main(String[] args) {
Pair<String, String> arr[] = new Pair<String, String>[10]; // BOOM!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment