blob: 0da8d2d3f9a99eb67b33b51271f1603f82c70e8f [file] [log] [blame]
import java.util.List;
public class Bug
{
void case1(List<Object>... lists)
{ int notFormatted; }
void case2(List... lists)
{
int notFormatted;
}
void case3(List<Object> lists)
{
int notFormatted;
}
void case4(java.lang.List<Object>... lists)
{ int notFormatted; }
}