solidity/test/cmdlineTests/asm_json/input.sol

10 lines
161 B
Solidity
Raw Normal View History

2021-09-21 12:09:51 +00:00
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.0;
contract C {
function f(uint x) public pure {
x += 42;
require(x > 100);
}
}