-
Bug
-
Resolution: Fixed
-
P3
-
1.4.2_36
-
b03
-
generic
-
generic
this is new regression test for fix CR 7110700
test need some modification for successfully compilation with jdk1.4.2 (autoboxing works for jdk5 and higher):
31c31
< super("test", 10);
---
> super("test", new Integer(10));
see comments for more details
test need some modification for successfully compilation with jdk1.4.2 (autoboxing works for jdk5 and higher):
31c31
< super("test", 10);
---
> super("test", new Integer(10));
see comments for more details