--- layout: fc_discuss_archives title: Message 24 from Frama-C-discuss on February 2013 ---
[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