summaryrefslogtreecommitdiff
path: root/test/files/pos/t8965.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-11-07 11:26:03 +1000
committerJason Zaugg <jzaugg@gmail.com>2014-11-07 21:41:42 +1000
commitb8f7fbee940856173dd19afddcd689495313c4cf (patch)
treea066ac526d80c7141f3e0e89e3ec651b415347e5 /test/files/pos/t8965.scala
parentced9e167d9d2c9016e76b6db94ceea7335d37bf2 (diff)
downloadscala-b8f7fbee940856173dd19afddcd689495313c4cf.tar.gz
scala-b8f7fbee940856173dd19afddcd689495313c4cf.tar.bz2
scala-b8f7fbee940856173dd19afddcd689495313c4cf.zip
SI-8965 Account for corner case in "unrelated types" warning
It's okay for the two types to LUB to something above `Object` if they both individially were its supertype.
Diffstat (limited to 'test/files/pos/t8965.scala')
-rw-r--r--test/files/pos/t8965.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t8965.scala b/test/files/pos/t8965.scala
new file mode 100644
index 0000000000..4f39330f4e
--- /dev/null
+++ b/test/files/pos/t8965.scala
@@ -0,0 +1,7 @@
+class A {
+ def f(x: Any with AnyRef, y: Any with AnyRef) = x eq y
+ // a.scala:2: warning: Any and Any are unrelated: they will most likely never compare equal
+ // def f(x: Any with AnyRef, y: Any with AnyRef) = x eq y
+ // ^
+ // one warning found
+}