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

11 lines
182 B
Solidity
Raw Normal View History

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