Skip to content

Instantly share code, notes, and snippets.

@rzwitserloot
Created January 30, 2020 21:18
Show Gist options
  • Save rzwitserloot/29114f6109a930f2b63ff0e56551ab19 to your computer and use it in GitHub Desktop.
Save rzwitserloot/29114f6109a930f2b63ff0e56551ab19 to your computer and use it in GitHub Desktop.
import java.util.*;
class Test {
public static void main(String[] args) {
thisIsFine(5);
Arrays.asList(5).stream().map(Integer::toString);
}
static void thisIsFine(int x) {}
static void thisIsFine(Integer x) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment