mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-22 15:18:14 +00:00
10 lines
162 B
Python
10 lines
162 B
Python
methods {
|
|
function id(uint256) external returns (uint256) envfree;
|
|
}
|
|
|
|
rule checkIdOutputIsAlwaysEqualToInput {
|
|
uint256 input;
|
|
|
|
assert id(input) == input;
|
|
}
|