summaryrefslogtreecommitdiff
path: root/Test/dafny0
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny0')
-rw-r--r--Test/dafny0/TypeParameters.dfy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/dafny0/TypeParameters.dfy b/Test/dafny0/TypeParameters.dfy
index 680679d4..614c2185 100644
--- a/Test/dafny0/TypeParameters.dfy
+++ b/Test/dafny0/TypeParameters.dfy
@@ -5,7 +5,7 @@ class C<U> {
y := x;
}
- function F<X>(x: X, u: U): bool
+ function method F<X>(x: X, u: U): bool
{
x == x && u == u
}