﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
39	Parser returns a mistake always at the first line	imendez	danirus	"The parser shows a curious error when the lower code is compiled:

////////////////////
Real a = 4;
Real b = 4;
Real c = 4;
Real d = 4;
Real e = 4;
Real f = 4;
Real g = 4;
Set sEq = [[ ]];
////////////////////

ERROR: Símbolo de cierre #}# fuera de lugar en línea 8 y columna 12:

LINEA 
   8 > Real a = 4;
                	^
   9 : Real b = 4;
  10 : Real c = 4;
  11 : Real d = 4;
  12 : Real e = 4;
  13 : Real f = 4;
  14 : Real g = 4;
  15 : Set sEq = [[ ]];
  16 : 

The parser returns a mistake always at the first line, so the complexity of 
detecting the error rises with the number of lines.

On the other hand, i don't know if upper way of creating an empty set must be 
valid. The code

 Set sEq = Copy(Empty);

works perfectly, but:

 Set sEq = [[ ]];

doesn't work."	defect	closed	normal		Kernel	head	normal	fixed		
