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/complex_imports/import_aliases/test.sol

11 lines
233 B

import {Test as TestAlias, St as StAlias, A as Aalias, Lib as LibAlias} from "./import.sol";
contract C is TestAlias{
using LibAlias for LibAlias.Data;
function f(StAlias storage s) internal{
s.v = Aalias;
}
}