﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
458	($var == '')=true for, Array, DllStruct.(?)	mvgulik		"($var == '') = true for, Array, DllStruct.(?)

not sure if this is correct autoit behavior or not.(bug?)
but the following ($var == """") test returns true for a array type var.
kind a expected it to return a false as the var type/content is not a string, nor empty.
(same is true for a DllStruct var)
{{{
;~ dim $var = DllStructCreate(""byte"")
dim $var[2] = [1,2]
dim $Out = ""if $var == '' then"" & @CRLF
if $var == '' then
	$Out &= 'True'
else
	$Out &= 'False'
EndIf
ConsoleWrite($Out & @CRLF)
MsgBox(0,'MsgBox',$Out)
}}}
tested on v3.2.12.1(missing in version list) and v3.2.13.4
also tested on v3.0.100.0 witch returned false(array)."	Bug	closed		AutoIt	3.2.12.0	None	No Bug	compare array dllStruct	
