blob: 954b4a7aa89417e7daa651954486daf51e6a3d0b (
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();
}
|