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/e2e/vyper_parsing/test_data/tuple_struct.vy

10 lines
240 B

interface Test:
def get() -> (uint80, int256, uint256, uint256, uint80): view
@external
def __default__() -> uint80:
chainlink_lrd: (uint80, int256, uint256, uint256, uint80) = Test(msg.sender).get()
return chainlink_lrd[0]