summaryrefslogtreecommitdiff
path: root/test/files/pos/philippe2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/philippe2.scala')
-rw-r--r--test/files/pos/philippe2.scala3
1 files changed, 2 insertions, 1 deletions
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());
}