summaryrefslogtreecommitdiff
path: root/Test/test20/ProcParamReordering.bpl
blob: f88aaea559ee2a2d6acc138e79c6c7fdbc9fb14b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %boogie -noVerify %s > %t
// RUN: %diff %s.expect %t

type C _;


procedure P<a, b>(x : a, y : b) returns ();

implementation P<a, b>(x : a, y : b) returns () {}

implementation P<c, d>(a : c, b : d) returns () {}

implementation P<d, c>(a : c, b : d) returns () {}

implementation P<d, c>(a : c, b : C d) returns () {}

implementation P<a>(x : a, y : a) returns () {}