aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pureJava/CastVsParen.java
blob: 0e18b917113fb2f878033f6cc28513df6fef5b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.testing.Tester;

public class CastVsParen {
    public static void main(String[] args) {
	int N = 1;
	boolean T = true;

	int i = (N);
	i = ((N));
	
	i = (T) ? N : 2;
    }
}