mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
373 B
Solidity
9 lines
373 B
Solidity
pragma experimental SMTChecker;
|
|
function f()pure {
|
|
ufixed a = uint64(1) + ufixed(2);
|
|
}
|
|
// ----
|
|
// Warning 2072: (52-60): Unused local variable.
|
|
// Warning 6660: (32-87): Model checker analysis was not possible because file level functions are not supported.
|
|
// Warning 6660: (32-87): Model checker analysis was not possible because file level functions are not supported.
|