summaryrefslogtreecommitdiff
path: root/test/files/neg/t6920.check
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2016-05-11 14:32:50 -0700
committerSom Snytt <som.snytt@gmail.com>2016-05-13 23:00:56 -0700
commit40b42ae71779fb333259674b05f28de45219939d (patch)
tree0eed0a7dbcd29375d5d8b32f093e96fe5d36a10b /test/files/neg/t6920.check
parenta6d5eb507bbeac2055a224a15fd76e7f9425520b (diff)
downloadscala-40b42ae71779fb333259674b05f28de45219939d.tar.gz
scala-40b42ae71779fb333259674b05f28de45219939d.tar.bz2
scala-40b42ae71779fb333259674b05f28de45219939d.zip
SI-8667 Caret at bad arg
Pick the first excessive positional arg for the caret. Note that erroring on named args doesn't do the obvious thing in this regard. If `k` was removed from the signature, then `f(k=1, i=2, j=3)` doesn't tell us much about the wrong arg, because naming takes the `k=1` as an assignment, `i` as duplicate naming. No arg is deemed extra, though further inspection of the conflicting args might get there. Since assignment syntax in parens is more|less deprecated (?), no more effort is done here.
Diffstat (limited to 'test/files/neg/t6920.check')
-rw-r--r--test/files/neg/t6920.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t6920.check b/test/files/neg/t6920.check
index 4e33aca3bc..d10abff03c 100644
--- a/test/files/neg/t6920.check
+++ b/test/files/neg/t6920.check
@@ -2,5 +2,5 @@ t6920.scala:9: error: too many arguments (2) for method applyDynamicNamed: (valu
error after rewriting to CompilerError.this.test.applyDynamicNamed("crushTheCompiler")(scala.Tuple2("a", 1), scala.Tuple2("b", 2))
possible cause: maybe a wrong Dynamic method signature?
test.crushTheCompiler(a = 1, b = 2)
- ^
+ ^
one error found