blob: f23cbdb4c3d5e5dc413f75ed76a372f8ff7f9703 [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;
}
}