blob: e8c2db26ce10574e95f4813fee4f506a1145ee75 [file] [log] [blame]
package p;
class A {
/**
* @deprecated Use {@link #m(int[],int)} instead
*/
void m(int a, int b[]){
m(b, a);
}
void m(int b[], int a){}
}