summaryrefslogtreecommitdiff
path: root/Test/z3api/boog22.bpl
blob: 95e45849102f1735053fce6c124ab123de422422 (plain)
1
2
3
4
5
6
7
8
9
10
type W;

function f1(W,int) returns (int);
function f1(W,int,int) returns (int);

procedure main() 
{  
  var w: W;
  assert(f1(w,0)==f1(w,0,0));
}