blob: 109470a8373a8bb0a76b4c906af0c02fda6af799 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
pragma experimental SMTChecker;
contract C
{
function f() public payable {
assert(msg.sig == 0x00000000);
}
}
// ----
// Warning: (79-108): Assertion violation happens here
|