summaryrefslogtreecommitdiff
path: root/test/files/neg/t8610-arg.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t8610-arg.check')
-rw-r--r--test/files/neg/t8610-arg.check8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/files/neg/t8610-arg.check b/test/files/neg/t8610-arg.check
index 4f194ce84a..ea2805508d 100644
--- a/test/files/neg/t8610-arg.check
+++ b/test/files/neg/t8610-arg.check
@@ -1,6 +1,12 @@
t8610-arg.scala:5: warning: possible missing interpolator: detected interpolated identifier `$name`
def x = "Hi, $name" // missing interp
^
+t8610-arg.scala:7: warning: Adapting argument list by creating a 2-tuple: this may not be what you want.
+ signature: X.f(p: (Int, Int)): Int
+ given arguments: 3, 4
+ after adaptation: X.f((3, 4): (Int, Int))
+ def g = f(3, 4) // adapted
+ ^
t8610-arg.scala:9: warning: private[this] value name in class X shadows mutable name inherited from class Named. Changes to name will not be visible within class X - you may want to give them distinct names.
override def toString = name // shadowing mutable var name
^
@@ -8,5 +14,5 @@ t8610-arg.scala:8: warning: side-effecting nullary methods are discouraged: sugg
def u: Unit = () // unitarian universalist
^
error: No warnings can be incurred under -Xfatal-warnings.
-three warnings found
+four warnings found
one error found