solidity/test/libsolidity/smtCheckerTests/modifiers/modifier_parameter_copy.sol

16 lines
296 B
Solidity
Raw Normal View History

2019-03-11 20:06:28 +00:00
contract C
{
modifier m(uint x) {
x == 2;
_;
}
function f(uint x) m(x) public pure {
assert(x == 2);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2019-03-11 20:06:28 +00:00
// ----
2021-08-12 13:57:44 +00:00
// Warning 6328: (95-109): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 3\nx = 3\n\nTransaction trace:\nC.constructor()\nC.f(3)