summaryrefslogtreecommitdiff
path: root/test/files/pos/t6091.scala
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2017-04-10 14:34:51 -0500
committerGitHub <noreply@github.com>2017-04-10 14:34:51 -0500
commit15e2759f49a3ef0f71290f4bbd9839cbf2346b0e (patch)
treea809f665e61208cb7e8ae098c676e80f341a68ed /test/files/pos/t6091.scala
parent715c88e9b74d1b4d1d0c4da9d0cc8f1b740e2dd3 (diff)
parentbad61ce0ff9f460c2f8873c134a7f6bee0a53824 (diff)
downloadscala-15e2759f49a3ef0f71290f4bbd9839cbf2346b0e.tar.gz
scala-15e2759f49a3ef0f71290f4bbd9839cbf2346b0e.tar.bz2
scala-15e2759f49a3ef0f71290f4bbd9839cbf2346b0e.zip
Merge pull request #5402 from som-snytt/issue/8040-unused
SI-8040 Improve unused warnings
Diffstat (limited to 'test/files/pos/t6091.scala')
-rw-r--r--test/files/pos/t6091.scala4
1 files changed, 2 insertions, 2 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 = {