solidity/test/libsolidity/smtCheckerTests/complex/warn_on_typecast.sol
2019-01-16 13:00:54 +01:00

9 lines
231 B
Solidity

pragma experimental SMTChecker;
contract C {
function f() public pure returns (uint) {
return uint8(1);
}
}
// ----
// Warning: (106-114): Type conversion is not yet fully supported and might yield false positives.