summaryrefslogtreecommitdiff
path: root/test/files/pos/eta.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-01-17 15:29:35 +0000
committermichelou <michelou@epfl.ch>2006-01-17 15:29:35 +0000
commit1ae15a9a30c89379cc919ef43faf9736f3ec2ffc (patch)
treed760fc97c98cb69bc51e9208c1ab73c59ec702e6 /test/files/pos/eta.scala
parente81a5c80747db20db692b8c6e4f44374b527ca9d (diff)
downloadscala-1ae15a9a30c89379cc919ef43faf9736f3ec2ffc.tar.gz
scala-1ae15a9a30c89379cc919ef43faf9736f3ec2ffc.tar.bz2
scala-1ae15a9a30c89379cc919ef43faf9736f3ec2ffc.zip
added explicit type for partial functions in te...
added explicit type for partial functions in test/files/pos/eta.scala, ..
Diffstat (limited to 'test/files/pos/eta.scala')
-rw-r--r--test/files/pos/eta.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/files/pos/eta.scala b/test/files/pos/eta.scala
index 7d862f67b1..590e7149f8 100644
--- a/test/files/pos/eta.scala
+++ b/test/files/pos/eta.scala
@@ -1,5 +1,7 @@
+// $Id$
+
object test {
def sum(f: Int => Int)(x: Int, y: Int): Int = 0;
-def g = sum;
-} \ No newline at end of file
+def g: (Int => Int) => (Int, Int) => Int = sum;
+}