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
{{ message }}
This repository has been archived by the owner on May 26, 2022. It is now read-only.
The browser Solidity compiler crashes when running on Chrome through two different computers. I'm on Windows 10 and my coworker is on Linux. The code in question is as follows.
contract c
{
function test() public returns(uint8)
{
uint8[] testing;
testing[testing.length++] = 1;
testing[testing.length++] = 2;
testing[testing.length++] = 3;
delete testing[1];
uint8[] testing1;
for (uint8 i = 0; i < testing.length; i++) {
if (0 != testing[i]) {
testing1[testing1.length++] = testing[i];
}
}
return testing1[0];
}
}
Steps to reproduce
Create the contract.
Click the "test" button to run the code.
Watch the tab in Chrome crash after hanging for a bit.
The text was updated successfully, but these errors were encountered:
The browser Solidity compiler crashes when running on Chrome through two different computers. I'm on Windows 10 and my coworker is on Linux. The code in question is as follows.
Steps to reproduce
The text was updated successfully, but these errors were encountered: