You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `uncheckedOverflow` built-in looks for cases where any of the operations `+, -, *` appearing within an `unchecked` solidity block can actually overflow.
234
+
The `uncheckedOverflows` built-in looks for cases where any of the operations `+, -, *` appearing within an `unchecked` solidity block can actually overflow.
235
235
236
236
For example:
237
237
```
@@ -245,6 +245,6 @@ This will fail the builtin rule, because the multiplication is a `uint128` multi
245
245
246
246
This rule can be enabled by including
247
247
```cvl
248
-
use builtin rule uncheckedOverflow;
248
+
use builtin rule uncheckedOverflows;
249
249
```
250
-
In addition, the line `"unchecked_overflow_builtin" : true` must be added to the conf file.
250
+
In addition, the line `"unchecked_overflow_builtin" : true` must be added to the conf file.
0 commit comments