blob: 2532964f875ebceeb653a992d6d638368953ab95 (
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 () {}
|