aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5009.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5009.scala')
-rw-r--r--tests/pending/run/t5009.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/t5009.scala b/tests/pending/run/t5009.scala
deleted file mode 100644
index 9e4700c07..000000000
--- a/tests/pending/run/t5009.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
-
- case class C[T, U <: String, O >: Object](x: Int, y: T)(z: U, b: Boolean)(s: O, val l: Int)
-
- val c = C(1, true)("dlkfj", true)("dlkfjlk", 10)
- println(c)
- println(c.l)
-
- println(c.copy(y = 20, x = 7283)("enwa", b = false)(l = -1, s = new Object))
-
- val res = c.copy[Int, String, Object](y = -3, x = 66)("lkdjen", false)(new Object, 100)
- println(res)
- println(res.l)
-}