aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t0631.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t0631.scala')
-rw-r--r--tests/pending/run/t0631.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/run/t0631.scala b/tests/pending/run/t0631.scala
deleted file mode 100644
index 2767b4bf0..000000000
--- a/tests/pending/run/t0631.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- class Foo {
- override def equals(that: Any) = {
- println("Foo.equals called")
- super.equals(that)
- }
- }
-
- println(new Foo == new Foo)
-
- case class Bar(x: Foo)
- val b = new Bar(new Foo)
-
- // this should not call Foo.equals, but simply compare object identiy of b
- println(b == b)
-}