summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-03-28 09:26:15 -0700
committerPaul Phillips <paulp@improving.org>2012-03-29 20:26:40 -0700
commit0bc2210f5541bfc70d0316bdb1ae89755f4aa70c (patch)
treed89f68303b2571d0fd114ea3bd7f357a15bfaa61 /test/pending/run
parent622cc9967376d6cef57c7478587e20d6afe9503f (diff)
downloadscala-0bc2210f5541bfc70d0316bdb1ae89755f4aa70c.tar.gz
scala-0bc2210f5541bfc70d0316bdb1ae89755f4aa70c.tar.bz2
scala-0bc2210f5541bfc70d0316bdb1ae89755f4aa70c.zip
A couple tests for pending.
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/t5629.check2
-rw-r--r--test/pending/run/t5629.scala25
2 files changed, 27 insertions, 0 deletions
diff --git a/test/pending/run/t5629.check b/test/pending/run/t5629.check
new file mode 100644
index 0000000000..6a2d630f4e
--- /dev/null
+++ b/test/pending/run/t5629.check
@@ -0,0 +1,2 @@
+int child got: 33
+any child got: 33
diff --git a/test/pending/run/t5629.scala b/test/pending/run/t5629.scala
new file mode 100644
index 0000000000..28e74a1c94
--- /dev/null
+++ b/test/pending/run/t5629.scala
@@ -0,0 +1,25 @@
+import scala.{specialized => spec}
+
+trait GrandParent[@spec(Int) -A] {
+ def foo(a:A): Unit
+ def bar[B <: A](b:B): Unit = println("grandparent got: %s" format b)
+}
+
+trait Parent[@spec(Int) -A] extends GrandParent[A] {
+ def foo(a:A) = bar(a)
+}
+
+class IntChild extends Parent[Int] {
+ override def bar[B <: Int](b:B): Unit = println("int child got: %s" format b)
+}
+
+class AnyChild extends Parent[Any] {
+ override def bar[B <: Any](b:B): Unit = println("any child got: %s" format b)
+}
+
+object Test {
+ def main(args:Array[String]) {
+ new IntChild().foo(33)
+ new AnyChild().foo(33)
+ }
+}