From 1f8b5691dabaae336c3c3f568b303eb24e783494 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Tue, 27 Jan 2015 12:46:48 +0100 Subject: Test reorg --- tests/disabled/structural-type/pos/t3175-pos.scala | 7 +++++++ tests/disabled/structural-type/pos/t3363-new.scala | 20 ++++++++++++++++++++ tests/disabled/structural-type/pos/t3363-old.scala | 18 ++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 tests/disabled/structural-type/pos/t3175-pos.scala create mode 100644 tests/disabled/structural-type/pos/t3363-new.scala create mode 100644 tests/disabled/structural-type/pos/t3363-old.scala (limited to 'tests/disabled/structural-type') diff --git a/tests/disabled/structural-type/pos/t3175-pos.scala b/tests/disabled/structural-type/pos/t3175-pos.scala new file mode 100644 index 000000000..89bbf8b5f --- /dev/null +++ b/tests/disabled/structural-type/pos/t3175-pos.scala @@ -0,0 +1,7 @@ +object Test { + def f(g:{val update:Unit}) = g.update + + def main(args: Array[String]): Unit = { + + } +} diff --git a/tests/disabled/structural-type/pos/t3363-new.scala b/tests/disabled/structural-type/pos/t3363-new.scala new file mode 100644 index 000000000..835d9471b --- /dev/null +++ b/tests/disabled/structural-type/pos/t3363-new.scala @@ -0,0 +1,20 @@ +import scala.reflect.runtime.universe._ + +object TestCase { + + //now matter if you put (abstract) class or trait it will fail in all cases + trait MapOps[T] + + //if fs was reduced to List (generic type with one parameter) then the code compiles + //if you inherit from MapOps[T] instead of MapOps[F] then code compiles fine + implicit def map2ops[T,F](fs: Map[T,F]): TestCase.MapOps[F]{val m: reflect.runtime.universe.TypeTag[T]; def is(xs: List[T]): List[List[T]]} = new MapOps[F] { + //if you remove this line, then code compiles + lazy val m: TypeTag[T] = sys.error("just something to make it compile") + def is(xs: List[T]) = List(xs) + } + + def main(args: Array[String]): Unit = { + println(Map(1 -> "2") is List(2)) + } + + } diff --git a/tests/disabled/structural-type/pos/t3363-old.scala b/tests/disabled/structural-type/pos/t3363-old.scala new file mode 100644 index 000000000..0088eff3d --- /dev/null +++ b/tests/disabled/structural-type/pos/t3363-old.scala @@ -0,0 +1,18 @@ +object TestCase { + + //now matter if you put (abstract) class or trait it will fail in all cases + trait MapOps[T] + + //if fs was reduced to List (generic type with one parameter) then the code compiles + //if you inherit from MapOps[T] instead of MapOps[F] then code compiles fine + implicit def map2ops[T,F](fs: Map[T,F]): TestCase.MapOps[F]{val m: Manifest[T]; def is(xs: List[T]): List[List[T]]} = new MapOps[F] { + //if you remove this line, then code compiles + lazy val m: Manifest[T] = sys.error("just something to make it compile") + def is(xs: List[T]) = List(xs) + } + + def main(args: Array[String]): Unit = { + println(Map(1 -> "2") is List(2)) + } + + } -- cgit v1.2.3