blob: 153e5595a78c548d8fa90379deb0deb24072554e [file] [log] [blame]
public class ParsingBug {
void test() {
String[] saOrig = new String[] {"foo", "bar"};
Object o1 = do_things((Object) saOrig);
}
Object do_things(Object o) {
return o;
}
}