Skip to content
Snippets Groups Projects
Commit d5870c84 authored by Erwan Jahier's avatar Erwan Jahier
Browse files

Fix test the -ec mode in presence of clocked variable.

Indeed, I've intentionally removed the when statements in clocked local var like this :

 var
    v:int;

because the following was producing a syntax error in ecexe:

 var
    v:int when c;

But Actually, the right thing to do was to generate the following:

 var
    (v:int) when c;

...

nb : #FAILS=90->89
parent 0a88fa3c
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment