lishunli / projectlombok

Automatically exported from code.google.com/p/projectlombok
0 stars 0 forks source link

Extension methods with varargs do not work if primitives are in the varargs args list (VerifyError). Eclipse only. #537

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Example code:

"%d".apply(10)

with as extension:

public static String apply(String x, Object... params) {return String.format(x, 
params);}

Original issue reported on code.google.com by reini...@gmail.com on 24 Jun 2013 at 8:27