summaryrefslogtreecommitdiff
path: root/Test/test1/IfThenElse0.bpl
blob: c26461b1284c4e586acbb5f7660685b9ab26d4a0 (plain)
1
2
3
4
5
6
7
8
procedure foo()
{
  var b:bool, i:int;

  b := if i then b else b;
  b := if b then b else i;
  b := if b then i else i;
}