slither icon indicating copy to clipboard operation
slither copied to clipboard

Incorrect implicit type conversion

Open montyly opened this issue 5 years ago • 0 comments

TypeConversion operations are missing.

For example in

    function addTest(uint8 a, uint32 b) external pure returns(uint32){
        return a+b;
    }

a+b leads to implicit type conversion. We need to locate implicit type conversion and add the TypeConversion operation

Related to https://github.com/crytic/slither/pull/283

montyly avatar Jun 20 '19 12:06 montyly