Skip to content

Commit 15572f6

Browse files
hansonrhansonr
authored andcommitted
bug in code, not SwingJS
1 parent fb0d286 commit 15572f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/net.sf.j2s.java.core/src/test/Test_Ints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Map<String, Integer> build() {
3333
public static void main(String[] args) {
3434
int i0b = new Integer(0b010101).intValue();
3535
assert(i0b == 21);
36-
new Test_Ints(0b00,0b01);
36+
new Test_Ints(0b11,0b01);
3737
test(0b01, 0b0101, 'c', 0x0f,0.5D, 0.2F, 33L, (short) 33);
3838
test(0b01, new Integer(0b0101), 'b', 0x0f,0.5D, 0.2F, 33L, (short) 33);
3939
int i3 = new Integer("3");

0 commit comments

Comments
 (0)