blob: 1f29cc860b759e9697ed6c6ef081020e7cb05509 (
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 ""} tid:int) returns({:linear ""} tid':int)
{
tid' := tid;
call A();
}
|