summaryrefslogtreecommitdiff
path: root/test/files/pos/t9020.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t9020.scala')
-rw-r--r--test/files/pos/t9020.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/t9020.scala b/test/files/pos/t9020.scala
new file mode 100644
index 0000000000..16e31e2572
--- /dev/null
+++ b/test/files/pos/t9020.scala
@@ -0,0 +1,10 @@
+trait ValueDiscard[@specialized U] {
+ def u: U
+}
+/* Was:
+scalac-hash v2.11.5 -Ywarn-value-discard test/files/pos/t9020.scala
+test/files/pos/t9020.scala:2: warning: discarded non-Unit value
+ def u: U
+ ^
+one warning found
+*/