File: TestDispatch.java

package info (click to toggle)
clojure1.6 1.6.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,608 kB
  • ctags: 5,838
  • sloc: java: 27,336; xml: 498; sh: 69; makefile: 45
file content (15 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package compilation;

public class TestDispatch {
    public static String someMethod (int a, int b) {
        return "(int, int)";
    }
    
    public static String someMethod (int a, long b) {
        return "(int, long)";
    }
    
    public static String someMethod (long a, long b) {
        return "(long, long)";
    }
}