mirror of https://github.com/crytic/slither
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.
24 lines
393 B
24 lines
393 B
import "./l2.sol" as L2;
|
|
import {MyErr as MyImportError} from "./l3.sol";
|
|
|
|
type fd is uint;
|
|
error MyError();
|
|
uint constant qwe = 34;
|
|
|
|
struct SS {
|
|
uint g;
|
|
}
|
|
|
|
enum MyEnum {
|
|
A,
|
|
B
|
|
}
|
|
|
|
function tpf(MyEnum p) returns(uint) {return 4;}
|
|
function tpf(fd p) pure returns(uint) {return 4;}
|
|
function tpf(uint e, SS memory g) view returns(uint) {return 4;}
|
|
|
|
library MyC {
|
|
function callme() public {}
|
|
|
|
}
|
|
|