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.
27 lines
447 B
27 lines
447 B
using {a} for Data;
|
|
|
|
struct Data { mapping(uint => bool) flags; }
|
|
|
|
function a(Data storage self, uint value, uint value2) returns(bool){
|
|
return false;
|
|
}
|
|
|
|
library Lib {
|
|
function a(Data storage self, uint value) public
|
|
view
|
|
returns (bool)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
contract C {
|
|
using Lib for Data;
|
|
Data knownValues;
|
|
|
|
function libCall(uint value) public {
|
|
require(knownValues.a(value));
|
|
}
|
|
|
|
} |