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/interface_constant.vy

8 lines
196 B

struct MyStruct:
liquidation_range: address
MY_CONSTANT: constant(uint256) = 50
interface MyInterface:
def my_func(a: int256, b: DynArray[uint256, MY_CONSTANT]) -> MyStruct: nonpayable