4 with Refined_State
=> (State
=> Constit
)
6 Constit
: Integer := 123;
8 protected body Prot_Typ
is
9 procedure Force_Body
is null;
11 procedure Aspect_On_Spec
12 with Global
=> (Input
=> Constit
);
13 procedure Aspect_On_Spec
is null;
15 procedure Aspect_On_Body
16 with Global
=> (Input
=> Constit
)
17 is begin null; end Aspect_On_Body
;
19 procedure Pragma_On_Spec
;
20 pragma Global
((Input
=> Constit
));
21 procedure Pragma_On_Spec
is null;
23 procedure Pragma_On_Body
is
24 pragma Global
((Input
=> Constit
));
25 begin null; end Pragma_On_Body
;
28 protected body Prot_Obj
is
29 procedure Force_Body
is null;
31 procedure Aspect_On_Spec
32 with Global
=> (Input
=> Constit
);
33 procedure Aspect_On_Spec
is null;
35 procedure Aspect_On_Body
36 with Global
=> (Input
=> Constit
)
37 is begin null; end Aspect_On_Body
;
39 procedure Pragma_On_Spec
;
40 pragma Global
((Input
=> Constit
));
41 procedure Pragma_On_Spec
is null;
43 procedure Pragma_On_Body
is
44 pragma Global
((Input
=> Constit
));
45 begin null; end Pragma_On_Body
;
49 procedure Aspect_On_Spec
50 with Global
=> (Input
=> Constit
);
51 procedure Aspect_On_Spec
is null;
53 procedure Aspect_On_Body
54 with Global
=> (Input
=> Constit
)
55 is begin null; end Aspect_On_Body
;
57 procedure Pragma_On_Spec
;
58 pragma Global
((Input
=> Constit
));
59 procedure Pragma_On_Spec
is null;
61 procedure Pragma_On_Body
is
62 pragma Global
((Input
=> Constit
));
63 begin null; end Pragma_On_Body
;
69 procedure Aspect_On_Spec
70 with Global
=> (Input
=> Constit
);
71 procedure Aspect_On_Spec
is null;
73 procedure Aspect_On_Body
74 with Global
=> (Input
=> Constit
)
75 is begin null; end Aspect_On_Body
;
77 procedure Pragma_On_Spec
;
78 pragma Global
((Input
=> Constit
));
79 procedure Pragma_On_Spec
is null;
81 procedure Pragma_On_Body
is
82 pragma Global
((Input
=> Constit
));
83 begin null; end Pragma_On_Body
;