Open GoogleCodeExporter opened 9 years ago
Okay, I have found the cause. This happens when the argument passed to the
extension method does not exist.
For example:
@ExtensionMethod(Iterables.class)
public class Test {
public static void main(String[] args) {
Collection<Object> iterable = new ArrayList<>();
iterable.addAll(nonExisting);
}
}
Original comment by jorn86
on 5 Jul 2013 at 11:35
Original issue reported on code.google.com by
jorn86
on 5 Jul 2013 at 11:26