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 program is valid and the result is correct. Per the spec:
For a of string type:
- a constant index must be in range if the string a is also constant
- if x is out of range at run time, a run-time panic occurs
- a[x] is the non-constant byte value at index x and the type of a[x] is byte
On the following program:
ssadump -run
outputs:The program is invalid and must not be compiled (type of "0"[0] is byte, -byte is an overflow).
on commit e9a746d
The text was updated successfully, but these errors were encountered: