summaryrefslogtreecommitdiff
path: root/test/files/neg/t9847.check
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2016-07-06 16:00:06 -0700
committerSom Snytt <som.snytt@gmail.com>2016-07-08 08:52:10 -0700
commitf805cf526abb4343990ed31db6c63436d6fe4fde (patch)
treedbc4894e782492fe5074daeb298144eeeb8832ba /test/files/neg/t9847.check
parent27a4f4d6b2c00df778a1da60fefc0f8f6a77edce (diff)
downloadscala-f805cf526abb4343990ed31db6c63436d6fe4fde.tar.gz
scala-f805cf526abb4343990ed31db6c63436d6fe4fde.tar.bz2
scala-f805cf526abb4343990ed31db6c63436d6fe4fde.zip
SI-9847 Nuance pure expr statement warning
Clarify the current warning, which means that an expression split over multiple lines may not be parsed as naively expected. When typing a block, attempt minor nuance. For instance, a single expression is not in need of parens. Try to avoid duplicate warnings for expressions that were adapted away from result position.
Diffstat (limited to 'test/files/neg/t9847.check')
-rw-r--r--test/files/neg/t9847.check45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/files/neg/t9847.check b/test/files/neg/t9847.check
new file mode 100644
index 0000000000..e55109b3ef
--- /dev/null
+++ b/test/files/neg/t9847.check
@@ -0,0 +1,45 @@
+t9847.scala:4: warning: discarded non-Unit value
+ def f(): Unit = 42
+ ^
+t9847.scala:4: warning: a pure expression does nothing in statement position
+ def f(): Unit = 42
+ ^
+t9847.scala:5: warning: discarded non-Unit value
+ def g = (42: Unit)
+ ^
+t9847.scala:5: warning: a pure expression does nothing in statement position
+ def g = (42: Unit)
+ ^
+t9847.scala:7: warning: a pure expression does nothing in statement position; multiline expressions might require enclosing parentheses
+ 1
+ ^
+t9847.scala:12: warning: discarded non-Unit value
+ + 1
+ ^
+t9847.scala:12: warning: a pure expression does nothing in statement position
+ + 1
+ ^
+t9847.scala:11: warning: a pure expression does nothing in statement position; multiline expressions might require enclosing parentheses
+ 1
+ ^
+t9847.scala:12: warning: multiline expressions might require enclosing parentheses; a value can be silently discarded when Unit is expected
+ + 1
+ ^
+t9847.scala:16: warning: discarded non-Unit value
+ x + 1
+ ^
+t9847.scala:19: warning: discarded non-Unit value
+ def j(): Unit = x + 1
+ ^
+t9847.scala:21: warning: a pure expression does nothing in statement position; multiline expressions may require enclosing parentheses
+ class C { 42 }
+ ^
+t9847.scala:22: warning: a pure expression does nothing in statement position; multiline expressions may require enclosing parentheses
+ class D { 42 ; 17 }
+ ^
+t9847.scala:22: warning: a pure expression does nothing in statement position; multiline expressions may require enclosing parentheses
+ class D { 42 ; 17 }
+ ^
+error: No warnings can be incurred under -Xfatal-warnings.
+14 warnings found
+one error found