summaryrefslogtreecommitdiff
path: root/Test/test20/ProcParamReordering.bpl
blob: 404b41a3f5e751becfd4637facb5c972bbe2fe17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

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 () {}