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.5.3.sol

26 lines
303 B

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