mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
291 B
Solidity
13 lines
291 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
contract C {
|
||
|
uint public x;
|
||
|
|
||
|
function f() public view {
|
||
|
uint y = this.x();
|
||
|
assert(y == x); // This fails as false positive because of lack of support for external getters.
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 6328: (114-128): CHC: Assertion violation happens here.
|