aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs187/475152/TestClass.java
blob: 1b13a90e1df578829cb5531d9ed6b87d8b671041 (plain)
1
2
3
4
5
6
7
8
9
10
11
package ajtest;

public class TestClass {
	@AjTarget
	private Long test;
	
	public void testMethod() {
		Object o = test;
		System.out.println(o);
	}
}