Created
          January 30, 2020 21:18 
        
      - 
      
- 
        Save rzwitserloot/29114f6109a930f2b63ff0e56551ab19 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
    
  
  
    
  | 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