mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
373 B
Solidity
11 lines
373 B
Solidity
pragma experimental SMTChecker;
|
|
uint constant A = 42;
|
|
contract C {
|
|
function f(uint x) public pure returns (uint) {
|
|
return x + A;
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 8195: (32-52): Model checker analysis was not possible because file level constants are not supported.
|
|
// Warning 8195: (32-52): Model checker analysis was not possible because file level constants are not supported.
|