﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2283	Array access when using nested arrays	Matt Diesel		"If arrays are nested then it is not possible to access them using brackets directly.

{{{
Local $a1[3] = [0, 0, 0]
Local $a2[3] = [1, 2, 3]

$a1[2] = $a2

;MsgBox(0, ""Test"", ($a1[2])[1]) ; Works
MsgBox(0, ""Test"", $a1[2][1]) ; Doesn't
}}}

Furthermore, using parenthesis like above to try and assign to that does nothing at all (no error, no effect):

{{{
#include<Array.au3>


Local $a1[3] = [0, 0, 0]
Local $a2[3] = [1, 2, 3]

$a1[2] = $a2

($a1[2])[1] = 42

_ArrayDisplay($a1[2])
}}}"	Bug	closed		AutoIt	3.3.9.4	None	No Bug		
