From dd511e1a1ad51206ff4dc5bfbf6caea4be5d4457 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Tue, 21 Jun 2011 04:28:20 +0000 Subject: Some tests for pending, no review. --- test/pending/run/bug3669.scala | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/pending/run/bug3669.scala (limited to 'test/pending/run') diff --git a/test/pending/run/bug3669.scala b/test/pending/run/bug3669.scala new file mode 100644 index 0000000000..4fd698c1a5 --- /dev/null +++ b/test/pending/run/bug3669.scala @@ -0,0 +1,22 @@ +trait MyTrait[T <: { var id: U }, U] { + def test(t: T): T = { + val v: U = t.id + t.id = v + t + } +} + +class C (var id: String){ + // uncommenting this fixes it + // def id_=(x: AnyRef) { id = x.asInstanceOf[String] } +} + +class Test extends MyTrait[C, String] + +object Test { + def main(args: Array[String]): Unit = { + val t = new Test() + val c1 = new C("a") + val c2 = t.test(c1) + } +} -- cgit v1.2.3