﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
106	waitfor problem	pabuhr	Thierry	"{{{
#include <fstream.hfa>
#include <thread.hfa>

thread Gortn {
};
void mem1( Gortn & mutex gortn ) {}
void main( Gortn & gortn ) with( gortn ) {
    for ( ;; ) {
	waitfor( mem1, gortn ) sout | nl;
    }
}
}}}
Missing compound around waitfor post statement.
{{{
cfa test1.c
CFA Version 1.0.0 (debug)
test1.c: In function '_X4mainFv_S5Gortn__1':
test1.c:10:29: error: a label can only be part of a statement and a declaration is not a statement
     }
                             ^            
test1.c:10:100: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
     }
                                                                                                    ^
test1.c:9:2403: error: '_thunk1' undeclared (first use in this function)
  waitfor( mem1, gortn ) sout | endl;
}}}"	defect	assigned	minor	cfa-cc	1.0			
