rpau / javalang-compiler

Java compiler elements (symbol and type tables) to perform code semantic analysis
GNU Lesser General Public License v3.0
10 stars 4 forks source link

Type resolution on static methods introduced in Java 8 #2

Open rpau opened 9 years ago

rpau commented 9 years ago

https://docs.oracle.com/javase/tutorial/java/generics/genTypeInference.html

void processAList(List stringList) { // process stringList }

processAList(Collections.emptyList());