solidity/test/libsolidity/smtCheckerTests/complex/warn_on_typecast.sol
2018-11-22 13:33:28 +00:00

9 lines
213 B
Solidity

pragma experimental SMTChecker;
contract C {
function f() public pure returns (uint) {
return uint8(1);
}
}
// ----
// Warning: (106-114): Assertion checker does not yet implement this expression.