aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/TriTestMethodLookup.java
blob: 43a10f536e367ca578f5db4fa29244d91ebf268b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import org.aspectj.testing.Tester;

class TriTestMethodLookup {
    static String foo(byte b)  { return "byte"; }
    static String foo(short s) { return "short"; }
    
    static final int byteAsInt = 127;
    static final int shortAsInt = 128;

    static byte byteType = 0;
    static short shortType = 0;
    static boolean notTrue = false;

    public static void main(String[] args) {

	Tester.checkEqual(foo(notTrue ? byteType : byteAsInt),  "byte",  "lub(byte, 127) --> byte");
	Tester.checkEqual(foo(notTrue ? shortType : shortAsInt),"short", "lub(short, 128) --> short");
    }
}