2021-08-05 15:14:16 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
|
|
|
pragma solidity >=0.0;
|
|
|
|
|
2020-10-14 15:44:40 +00:00
|
|
|
contract test {
|
2021-08-05 15:14:16 +00:00
|
|
|
function f(uint x) public pure {
|
2020-10-14 15:44:40 +00:00
|
|
|
assert(x > 0);
|
2021-08-05 15:14:16 +00:00
|
|
|
}
|
|
|
|
}
|