summaryrefslogtreecommitdiff
path: root/Test/test21/Keywords.bpl
blob: daf38b45ce7134669a80837ced624962c7636a37 (plain)
1
2
3
4
5
6
7
8
9


function NOT(x:int) returns(int);

axiom (forall x:int :: NOT(x) == 1 - x);

procedure P() returns () {
  assert NOT(5) == -4;
}