summaryrefslogtreecommitdiff
path: root/test/files/neg/missing-arg-list.check
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2015-06-26 21:32:29 -0700
committerSom Snytt <som.snytt@gmail.com>2015-06-27 01:55:45 -0700
commit96b012aa48e3d91f8ec6d5221df2f455f278c9e0 (patch)
treee78a49eeeb01ca4a516385d316062b6b83358ee3 /test/files/neg/missing-arg-list.check
parent5b8073676cc77c2c889ed690f12bb6a99e790769 (diff)
downloadscala-96b012aa48e3d91f8ec6d5221df2f455f278c9e0.tar.gz
scala-96b012aa48e3d91f8ec6d5221df2f455f278c9e0.tar.bz2
scala-96b012aa48e3d91f8ec6d5221df2f455f278c9e0.zip
Improved message for missing argument list
Clarifies the language and rules for eta-expansion. A missing argument in a list, as opposed to a missing argument list, results in a different message. The comical expansion in parens does not attempt to show what was already applied, but succeeds in showing at a glance the shape of the method in question. ``` scala> def m(i: Int, j: Int)(x: Int) = ??? m: (i: Int, j: Int)(x: Int)Nothing scala> m <console>:12: error: missing argument list for method m Unapplied methods are only converted to functions when a function type is expected. You can make this conversion explicit by writing `m _` or `m(_,_)(_)` instead of `m`. m ^ ``` The original submission was due to sschaef and the wording due to adriaanm, with a minor tweak.
Diffstat (limited to 'test/files/neg/missing-arg-list.check')
-rw-r--r--test/files/neg/missing-arg-list.check21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/files/neg/missing-arg-list.check b/test/files/neg/missing-arg-list.check
new file mode 100644
index 0000000000..5a011c36f2
--- /dev/null
+++ b/test/files/neg/missing-arg-list.check
@@ -0,0 +1,21 @@
+missing-arg-list.scala:9: error: missing argument list for method id in trait T
+Unapplied methods are only converted to functions when a function type is expected.
+You can make this conversion explicit by writing `id _` or `id(_)` instead of `id`.
+ val w = id
+ ^
+missing-arg-list.scala:10: error: missing argument list for method f in trait T
+Unapplied methods are only converted to functions when a function type is expected.
+You can make this conversion explicit by writing `f _` or `f(_)(_)` instead of `f`.
+ val x = f
+ ^
+missing-arg-list.scala:11: error: missing argument list for method g in trait T
+Unapplied methods are only converted to functions when a function type is expected.
+You can make this conversion explicit by writing `g _` or `g(_,_,_)` instead of `g`.
+ val y = g
+ ^
+missing-arg-list.scala:12: error: missing argument list for method h in trait T
+Unapplied methods are only converted to functions when a function type is expected.
+You can make this conversion explicit by writing `h _` or `h(_,_,_)(_)` instead of `h`.
+ val z = h
+ ^
+four errors found