2220aca5ccbde512b7ee2cbd11ac5f8a42fdf1ed
[mate.git] / tests / Integer1.java
1 package tests;
2
3 public class Integer1 {
4         public static void main(String []args) {
5                 Integer a = new Integer(0x1337);
6                 a.intValue(); // 0x1337
7         }
8 }