2020-05-29 16:13:03 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
contract test {
|
|
|
|
function f() internal pure {
|
|
|
|
ufixed a = uint64(1) + ufixed(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 2072: (80-88): Unused local variable.
|
2020-09-25 17:09:06 +00:00
|
|
|
// Warning 4984: (91-112): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 5084: (91-100): Type conversion is not yet fully supported and might yield false positives.
|
|
|
|
// Warning 5084: (103-112): Type conversion is not yet fully supported and might yield false positives.
|