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