mirror of https://github.com/crytic/slither
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.
17 lines
414 B
17 lines
414 B
2 years ago
|
|
||
|
contract Placeholder {
|
||
|
constructor() payable {}
|
||
|
}
|
||
|
|
||
|
contract NewContract {
|
||
|
bytes32 internal constant state_variable_read = bytes32(0);
|
||
|
|
||
|
function readAllStateVariables() external {
|
||
|
new Placeholder{salt: state_variable_read} ();
|
||
|
}
|
||
|
|
||
|
function readAllLocalVariables() external {
|
||
|
bytes32 local_variable_read = bytes32(0);
|
||
|
new Placeholder{salt: local_variable_read} ();
|
||
|
}
|
||
|
}
|