blob: f38891ff7d32256ef4e94010108ba62c6a9e5e4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
function a() returns(bv32);
axiom a() == a();
axiom 0bv5 != 1bv5;
// -------------------------
type $x;
function g() returns($x);
type Field x;
var $gmem : <x>[ref, Field x] x;
const unique f : Field $x;
procedure qq()
modifies $gmem;
{
$gmem[null, f] := g();
}
type ref;
const null : ref;
|