aboutsummaryrefslogtreecommitdiff
path: root/src/test/test2/MethodCall.java
blob: 22341a08aa66e9a1af133f0144869e2b2f02f3b4 (plain)
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();
    }
}