You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run USVM on the the following function (Java Juliet test suite)
publicvoidbad() throwsThrowable
{
bytedata;
/* POTENTIAL FLAW: Use the maximum size of the data type */data = Byte.MAX_VALUE;
/* POTENTIAL FLAW: if data == Byte.MAX_VALUE, this will overflow */byteresult = (byte)(data + 1);
IO.writeLine("result: " + result);
}
I run USVM on the the following function (Java Juliet test suite)
IO is implemented as follows.
There is an unexpected NPE during the USVM run.
Assignments to
null
:And the final result is
The text was updated successfully, but these errors were encountered: