solidity/test/libsolidity/smtCheckerTests/special/msg_data.sol

11 lines
181 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
function f() public payable {
assert(msg.data.length > 0);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (79-106): Assertion violation happens here