﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2102	error using ContinueLoop	anonymous		"When using code like

{{{
For $i = 1 To 10
	If $i = 3 Then ContinueLoop
Next
}}}

I receive an error

{{{
""ContinueLoop"" statement with no matching ""While"", ""Do"" or ""For"" statement.:
If $i = 3 Then ContinueLoop
}}}

Full example of code.
{{{
$File = FileOpenDialog('Choose 1st file', @ScriptDir, '(*.txt;*.xml)|(*)')
If @error Then Exit
$List = FileOpenDialog('Choose 2nd file', @ScriptDir, '(*.txt;*.xml)|(*)')
If @error Then Exit

$Out = FileGetName($File) & '.fixed.' & FileGetExtension($File)
_FileReadToArray($File, $File)
_FileReadToArray($List, $List)
For $i = 1 To $File[0]
	For $j = 1 To $List[0]
		If $File[$i] = $List[$j] Then ContinueLoop 2
	Next
	FileWriteLine($Out, $File[$i])
Next
}}}"	Bug	closed		AutoIt	3.3.8.0	None	Duplicate		
