[Fernflower] autoboxing primitives should not always be ignored

This commit is contained in:
Alexandru-Constantin Bledea
2017-08-30 12:08:26 +03:00
committed by Egor.Ushakov
parent 39db41ee8b
commit 893450cdb3
4 changed files with 28 additions and 2 deletions

View File

@@ -166,4 +166,9 @@ public class TestPrimitives {
res = (c > 255);
return res;
}
void testAutoBoxingCallRequired(boolean value) {
Boolean.valueOf(value).hashCode();
}
}