summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2016-12-20 14:35:43 -0800
committerSom Snytt <som.snytt@gmail.com>2017-03-11 23:48:32 -0800
commit785f4fe224302bbddbbd6a198f1722b4c0ae17f7 (patch)
tree6b040f5c2b5318bff7c0077c0d9719165e388d9f /test/files/pos
parent6d7b81a1e47960fbbc469108a34414f76a706342 (diff)
downloadscala-785f4fe224302bbddbbd6a198f1722b4c0ae17f7.tar.gz
scala-785f4fe224302bbddbbd6a198f1722b4c0ae17f7.tar.bz2
scala-785f4fe224302bbddbbd6a198f1722b4c0ae17f7.zip
SI-8040 Xlint enables unused warnings
`-Ywarn-unused-import` is deprecated in favor of `-Ywarn-unused:imports`. `-Xlint` does not yet enable `-Ywarn-unused:patvars`. But the default for `-Ywarn-unused` is everything, including `patvars`. So `-Xlint:unused` is the populist option, `-Ywarn-unused` more exclusive. Tests are fixed by narrowing scope of `-Xlint` when specified.
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/t6091.scala4
-rw-r--r--test/files/pos/t8013.flags2
-rw-r--r--test/files/pos/t8040.flags1
-rw-r--r--test/files/pos/t8040.scala6
4 files changed, 10 insertions, 3 deletions
diff --git a/test/files/pos/t6091.scala b/test/files/pos/t6091.scala
index 72e663ec3b..0318640e7b 100644
--- a/test/files/pos/t6091.scala
+++ b/test/files/pos/t6091.scala
@@ -1,6 +1,6 @@
-object Foo { def eq(x:Int) = x }
+object Foo { def eq(x: Int) = x }
-class X { def ==(other: String) = true }
+class X { def ==(other: String) = other.nonEmpty }
object Test {
def main(args: Array[String]): Unit = {
diff --git a/test/files/pos/t8013.flags b/test/files/pos/t8013.flags
index 3955bb6710..219723cec9 100644
--- a/test/files/pos/t8013.flags
+++ b/test/files/pos/t8013.flags
@@ -1 +1 @@
--Xfatal-warnings -Xlint:-infer-any,_
+-Xfatal-warnings -Xlint:missing-interpolator
diff --git a/test/files/pos/t8040.flags b/test/files/pos/t8040.flags
new file mode 100644
index 0000000000..3126c059f0
--- /dev/null
+++ b/test/files/pos/t8040.flags
@@ -0,0 +1 @@
+-Xfatal-warnings -Ywarn-unused:params
diff --git a/test/files/pos/t8040.scala b/test/files/pos/t8040.scala
new file mode 100644
index 0000000000..b067f36b0b
--- /dev/null
+++ b/test/files/pos/t8040.scala
@@ -0,0 +1,6 @@
+
+object Test {
+ implicit class C(val sc: StringContext) { // no warn unused sc
+ def c(args: Any*): String = "c?" + args.mkString(",") // would warn unused args
+ }
+}