aboutsummaryrefslogtreecommitdiff
path: root/tests/pos-java-interop/varargsOverride/Base.java
blob: a4607b71c1ad774615c7de29babcecd8990aa33c (plain) (blame)
1
2
3
4
5
class Base {
  public Object foo(Object... x) {
    return x;
  }
}