File: B_2.java

package info (click to toggle)
scala 2.11.12-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 62,828 kB
  • sloc: javascript: 28,808; java: 13,415; xml: 3,250; sh: 1,620; python: 756; makefile: 38; awk: 36; ansic: 6
file content (22 lines) | stat: -rw-r--r-- 556 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class B_2 {
  private static int res = 0;

  public static void m(char a[]) { res += 10; }
  public static void m(String a) { res += 100; }
  public static void m(Object a) { res += 1000; }

  public static <T> T foo(int a, T... b) { return b[0]; }

  public static <T> T bar(T b[]) { return b[0]; }

  public static void main(String[] args) {
    m(foo(15, "a", "b", "c"));
    if (res != 100)
      throw new Error("bad: "+ res);

    A a = new A();
    m(a.foo(16, "a", "b", "c"));
    if (res != 200)
      throw new Error("bad: " + res);
  }
}