summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/eta.scala6
-rw-r--r--test/files/pos/philippe2.scala3
2 files changed, 6 insertions, 3 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;
+}
diff --git a/test/files/pos/philippe2.scala b/test/files/pos/philippe2.scala
index 0dc896ebfd..2ab3a382ef 100644
--- a/test/files/pos/philippe2.scala
+++ b/test/files/pos/philippe2.scala
@@ -1,7 +1,8 @@
+// $Id$
import scala._;
class m1() {
def n() = 0;
def foo(i: Int)(j: Int): Unit = ();
- val bar = foo(n());
+ val bar: Int => Unit = foo(n());
}