﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
221	Cannot declare multiple variables on one line in .mmp	dfix	zirkel	"It seems that the parser can't handle the declaration of multiple variables on a single line.

Something like:

typedef struct Node{

	struct Node* next;
	int value;

} Node;

void main () {
	int x, y, z;
	Node a;
	Node* p;
	assert a.value == 4;
}

results in:

line 10:1 required (...)+ loop did not match anything at input 'int'
line 10:6 mismatched input ',' expecting LPAREN
line 10:9 extraneous input ',' expecting IDENTIFIER
line 11:7 mismatched input ';' expecting LPAREN
line 12:5 extraneous input '*' expecting IDENTIFIER
line 13:9 extraneous input '.' expecting IDENTIFIER
examples/linkedList/linkedListSimple.mmp parsed unsuccessfully."	enhancement	closed	minor	Release 1.0	front	1.0	fixed	parser, declaration, .mmp	
