You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
packageTestistype Reserved_7 ismod2 ** 7;
type M is
message
F1 : Boolean;
F2 : Reserved_7;
endmessage;
genericwithfunctionFunc (Arg : Boolean) return Boolean;
session S with
Initial => S1,
Final => Done
isbegin
state S1 is
Message : M;
Value : Boolean;
begin
Value := Func (True);
Message := M'(F1 => Value, F2 => 0);
transition
goto Done
exceptiongoto Done
endS1;
state Done isnull state;
endS;
endTest;
results in this session code:
genericwithprocedureFunc (Func : out RFLX.__BUILTINS__.Boolean; Arg : RFLX.__BUILTINS__.Boolean);
packageRFLX.Test.Swith
SPARK_Mode,
Initial_Condition =>
Uninitialized
is
[...]
The text was updated successfully, but these errors were encountered:
The following spec
results in this session code:
The text was updated successfully, but these errors were encountered: