summaryrefslogtreecommitdiff
path: root/Test/test20/ProcParamReordering.bpl
blob: 225eed3326194c2be8b45a744f30b114409e5d27 (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 () {}