summaryrefslogtreecommitdiffstats
path: root/src/test/misc/en/AutocastTest.java
blob: ea089480c28cd39ebdc7a63780bad486a49c6205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package test.misc.en;

import java.util.HashMap;

public class AutocastTest {

	public static void main(String[] args) {
		
		HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
		
		Integer key = new Integer(1);
		Integer value = map.containsKey(key)?0:map.get(key);
		
		System.out.println(value == null);
	}
	
}