aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6385.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6385.scala')
-rw-r--r--tests/pending/run/t6385.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/pending/run/t6385.scala b/tests/pending/run/t6385.scala
deleted file mode 100644
index f86fe8c14..000000000
--- a/tests/pending/run/t6385.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-object Test {
- def main(args: Array[String]): Unit = {
- val y: AA[Int] = C(2)
- val c: Int = y.x.y
- assert(c == 2)
- }
-}
-trait AA[T] extends Any {
- def x: C[T]
-}
-case class C[T](val y: T) extends AnyVal with AA[T] {
- def x = this
-}