blob: fdc4e0e213a40291911c4ad2c12f635617881f4d [file] [log] [blame]
class Types {
public static String[] arrayMethod(String s) {
return new String[] {s};
}
public static void arrayContext(String s) {
String[] sa = arrayMethod(s.substring(0));
Object[] oa = arrayMethod(s);
}
}