Static Analyzer for Solidity
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
slither/examples/printers/data_dependencies.sol

15 lines
243 B

contract MyContract{
uint a = 0;
uint b = 0;
uint c = 0;
function setA(uint input_a, uint input_b) public{
setB(input_b);
a = input_a;
}
function setB(uint input) internal{
b = input;
}
}