itemisCREATE / solidity-ide

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

Quickfix errors regarding the mutability modifier 'constant' #286

Open Mazesch opened 4 years ago

Mazesch commented 4 years ago

The quickfix option 'Use 'pure' instead.' should change the keyword to 'pure' instead of 'view'.

The quickfix option 'Use 'view' instead.' does nothing.

pragma solidity ^0.5.4;

contract Contract {
    function f() public constant returns (uint) {
        return 0;
    }
}