1 2 3 4 5 6 7 8
package test2; public class MethodCall { public Object bar() { String[] str = new String[] { "one", "two" }; return str.clone(); } }