summaryrefslogtreecommitdiff
path: root/Test/dafny4/set-compr.dfy
blob: 71a07f3d77bdbb7673504f8bf30af8aa4c3f9f04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// RUN: %dafny /compile:0  "%s" > "%t"
// RUN: %diff "%s.expect" "%t"

method M()
  modifies set o: object | true  // allowed, since comprehension is in ghost context
{
}

method N()
  requires null in set o: object | true  // (X) allowed, since comprehension is in ghost context
  ensures null in set o: object | true  // (X) allowed, since comprehension is in ghost context
  decreases set o: object | true  // (X) allowed, since comprehension is in ghost context
{
  N();
}

method O() returns (ghost p: set<object>)
{
  assert null in set o: object | true;  // (X) allowed -- in a ghost context
  p := set o: object | true;  // (X) allowed -- in a ghost context
}

method P() returns (p: set<object>)
{
  p := set o: object | true;  // not allowed -- not in a ghost context
}

ghost method Q() returns (p: set<object>)
{
  p := set o: object | true;  // allowed, since the whole method is ghost
}

function F(): int
  requires null in set o: object | true  // allowed
  ensures null in set o: object | true  // allowed
  reads set o: object | true  // allowed
  decreases set o: object | true  // allowed
{
  if null in set o: object | true then  // allowed -- in a ghost context
    F()
  else
    0
}

function method G(): int
  requires null in set o: object | true  // (X) allowed
  ensures null in set o: object | true  // (X) allowed
  reads set o: object | true  // allowed
  decreases set o: object | true  // (X) allowed
{
  if null in set o: object | true then  // not allowed, since this is not a ghost context
    G()
  else
    0
}