From ef536f00d9d480f28db3093b9dc09a90041cfb74 Mon Sep 17 00:00:00 2001 From: Dmitry Petrashko Date: Thu, 25 Jun 2015 09:45:27 +0200 Subject: Enable 61 tests that succeed. --- tests/pending/run/t6385.scala | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 tests/pending/run/t6385.scala (limited to 'tests/pending/run/t6385.scala') 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 -} -- cgit v1.2.3