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