summaryrefslogtreecommitdiff
path: root/test/files/pos/t1642b.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-17 22:40:54 +0000
committerPaul Phillips <paulp@improving.org>2011-03-17 22:40:54 +0000
commitebcec5f4d657afb3dbde33128d021ec760cb528b (patch)
tree84167506e3e74803242ac49ee1b1371ed59731f7 /test/files/pos/t1642b.scala
parent5647d7300922a357ab849e528fcc840afc92e33a (diff)
downloadscala-ebcec5f4d657afb3dbde33128d021ec760cb528b.tar.gz
scala-ebcec5f4d657afb3dbde33128d021ec760cb528b.tar.bz2
scala-ebcec5f4d657afb3dbde33128d021ec760cb528b.zip
Reenabled the commented out bits of the test fo...
Reenabled the commented out bits of the test for #1642. No review.
Diffstat (limited to 'test/files/pos/t1642b.scala')
-rw-r--r--test/files/pos/t1642b.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t1642b.scala b/test/files/pos/t1642b.scala
new file mode 100644
index 0000000000..72e53b0c9a
--- /dev/null
+++ b/test/files/pos/t1642b.scala
@@ -0,0 +1,6 @@
+package x
+abstract class H[A] {
+ type P <: R[P]
+ def a: P
+}
+class R[F]