From c7699ebe45820a34de2e9f5c9bfba3dea6b56bd3 Mon Sep 17 00:00:00 2001 From: Aleksandar Prokopec Date: Tue, 15 May 2012 15:50:10 +0200 Subject: Add more logging. --- test/files/pos/t4717.scala | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 test/files/pos/t4717.scala (limited to 'test') diff --git a/test/files/pos/t4717.scala b/test/files/pos/t4717.scala new file mode 100644 index 0000000000..8144c0c48b --- /dev/null +++ b/test/files/pos/t4717.scala @@ -0,0 +1,39 @@ + + + + + + +/* +trait Bug1[@specialized(Boolean) A] extends TraversableOnce[A] { + + def ++[B >: A](that: TraversableOnce[B]): Iterator[B] = new Iterator[B] { + lazy val it = that.toIterator + def hasNext = it.hasNext + def next = it.next + } + +} +*/ + + +/* +trait WorksFine[@specialized(Boolean) A] { + class SubBounds[B >: A] extends Bounds[B] { + lazy val it = ??? + it + } + def x[B >: A]: Unit = new SubBounds[B] +} +*/ + + +trait Bounds[@specialized(Boolean) A] { + // okay without `>: A` + def x[B >: A]: Unit = new Bounds[B] { + lazy val it = ??? // def or val okay + it + } +} + + -- cgit v1.2.3