summaryrefslogtreecommitdiff
path: root/Test/linear/f3.bpl
blob: 3a0e855cb54ef508df6caa4edb0be044d46310f5 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %boogie -noinfer -typeEncoding:m -useArrayTheory -doModSetAnalysis "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
procedure A() {}

procedure B({:linear_in ""} tid:int) returns({:linear ""} tid':int)
{
  tid' := tid;
  call A();
}