aboutsummaryrefslogtreecommitdiff
path: root/src/test/test4/VarArgs.java
blob: 53c0407235d6cf7f9061cd2f0bd45301d74300c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test4;

public class VarArgs {
    public int test() {
        return goo(1, 2, 3) + goo(1, "a", "b", "c");
    }

    public int goo(int i, int... k) {
        return k.length;
    }

    public int goo(int i, String... k) {
        return k.length;
    }
}