blob: 374db1745d17c2dcd60d44154127f51deab399f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
procedure P(x: int) returns (y: int);
procedure CallP()
{
call forall P(5); // P is allowed here, even if it has out parameters
}
var global: bool;
procedure Q(x: int);
modifies global;
procedure CallQ()
{
call forall Q(5); // error: P is not allowed here, because it has a modifies clause
}
procedure R(x: int);
procedure CallR()
{
call forall R(5); // no problem that R has no body, though
}
|