solidity/test/libsolidity/smtCheckerTests/types/bool_simple_5.sol

8 lines
134 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(bool x) public pure {
bool y = x;
assert(x == y);
}
}