﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2713	ByRef Copy Bug	anonymous		"In the following script, the presence of {{{ByRef}}} causes {{{$b}}} to be a reference, not a copy.

{{{
Local $a[2] = [1, 2]

test($a[0])

Func test(ByRef $foo)
    Local $b = $a
    $foo += 1

    ConsoleWrite($a[0] & @LF)
    ConsoleWrite($b[0] & @LF)
EndFunc   ;==>test
}}}"	Bug	closed		AutoIt	3.3.11.5	None	Duplicate	byRef	
