The select command (https://community.bistudio.com/wiki/select) doesn't detect an error when selecting an element equal to the size of the array (a non-existant element).
Description
Description
Details
Details
- Legacy ID
- 2894174119
- Severity
- None
- Resolution
- Won't Fix
- Reproducibility
- Always
- Category
- Scripting
Steps To Reproduce
a = [1,2,3];
//index: 0 1 2
b = a select 2; select last index: NO ERROR
c = a select 3; select non-existant index: NO ERROR (should be an error)
d = a select 4;// select non-existant index: ERROR
Event Timeline
Comment Actions
no one will ever change this behaviour, regardless if it is by design or a bug. Resolving as wont fix