(byte) type cast in constructor calls

This commit is contained in:
Egor.Ushakov
2017-04-27 15:21:44 +03:00
parent 997a7747d6
commit 4de826363f
4 changed files with 16 additions and 1 deletions

View File

@@ -65,6 +65,10 @@ public class TestPrimitives {
this.printByte((byte)this.getInt());// 68
this.printShort((short)this.getInt());// 69
}// 70
public void constructor() {
new Byte((byte)1);// 73
}// 74
}
class 'pkg/TestPrimitives' {
@@ -201,6 +205,11 @@ class 'pkg/TestPrimitives' {
f 65
12 66
}
method 'constructor ()V' {
4 69
9 70
}
}
Lines mapping:
@@ -237,3 +246,5 @@ Lines mapping:
68 <-> 65
69 <-> 66
70 <-> 67
73 <-> 70
74 <-> 71