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/tests/ast-parsing/memberaccess-0.4.0.sol

20 lines
247 B

contract C {
struct S {
uint a;
}
function f() public {
uint[] memory x;
x.length;
address(this).balance;
block.coinbase;
msg.sender;
tx.origin;
S({a: 5}).a;
}
}