blob: 0ee8b3f16dd6d0dff00a1ab217cc2007ffc46d75 [file] [log] [blame]
package test1;
public class Dispatch {
public int run() {
return 5;
}
public int f(Object obj) {
return 1;
}
public int f(Object[] obj) {
return 2;
}
}