solidity/test/libsolidity/semanticTests/viaYul/assert.sol
2019-05-07 12:19:41 +02:00

23 lines
462 B
Solidity

contract C {
function f(bool a) public pure returns (bool x) {
bool b = a;
x = b;
assert(b);
}
function fail() public pure returns (bool x) {
x = true;
assert(false);
}
function succeed() public pure returns (bool x) {
x = true;
assert(true);
}
}
// ====
// compileViaYul: true
// ----
// f(bool): true -> true
// f(bool): false -> FAILURE
// fail() -> FAILURE
// succeed() -> true