blob: a9876bb1312ba77b4b91212b8aa5e917cb910f6b [file] [log] [blame]
//can rename A.m(E[]) to k
package p;
class A<E> {
void m(E[] e) {}
void m(String[] t) {};
}
class Sub extends A<String> {
void m(String... s) {}
}