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/solc_parsing/test_data/aliasing/main.sol

20 lines
400 B

import "./l1.sol" as R;
contract Tp {
function re(R.SS calldata param1, R.MyEnum param2) public {
R.MyEnum a = R.MyEnum.A;
R.SS memory b = R.SS(R.qwe);
R.MyC.callme();
R.tpf(2, param1);
R.tpf(param2);
R.tpf(R.fd.wrap(4));
R.L2.l();
revert R.MyImportError();
}
function re2() public {
revert R.MyError();
}
}