6 lines
74 B
Solidity
6 lines
74 B
Solidity
|
contract Assert {
|
||
|
function f(uint x) public pure {
|
||
|
assert(x > 0);
|
||
|
}
|
||
|
}
|