second-state/SOLL

Segmentation fault when creating a solidity struct

hydai opened this issue · 0 comments

hydai commented

How to reproduce

pragma solidity ^0.5.0;
contract Struct {
    struct S {
        int a;
        string b;
    }
    function test() public payable{
        S memory s;
    }
}

Version

Master branch