itemisCREATE / solidity-ide

Solidity plugin for Eclipse
Eclipse Public License 1.0
86 stars 25 forks source link

"Add 'memory' modifier" quickfix does nothing #285

Open Mazesch opened 5 years ago

Mazesch commented 5 years ago

code example:

pragma solidity ^0.5.9;

contract Test {
    function test(uint[1] a) public returns (uint){
         return a[0];
    }
}