Frama-C-discuss mailing list archives

This page gathers the archives of the old Frama-C-discuss archives, that was hosted by Inria's gforge before its demise at the end of 2020. To search for mails newer than September 2020, please visit the page of the new mailing list on Renater.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Frama-c-discuss] Jessie - behavior



On Fri, Feb 22, 2013 at 10:09 PM, Rovedy Aparecida Busquim e Silva
<rovedy at ig.com.br> wrote:

> /* @ requires status == TRUE || FALSE;
> ...

This is not how you express that status is either TRUE or FALSE in ACSL.
Write it as you would in C, status == TRUE || status == FALSE.

Besides, you left a space between the '*' character and the '@' character.
This causes the entire annotation to be ignored.

Pascal