summaryrefslogtreecommitdiff
path: root/test/files/pos/t1642/test.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-08-11 07:35:44 +0000
committerMartin Odersky <odersky@gmail.com>2009-08-11 07:35:44 +0000
commitfdf7441ed1d9c547411b7718d2c2304c097926d5 (patch)
tree2136eb8044ee376364092634a0c1677513e8931b /test/files/pos/t1642/test.scala
parent60533e82c898d0ead48850fa877620202337c770 (diff)
downloadscala-fdf7441ed1d9c547411b7718d2c2304c097926d5.tar.gz
scala-fdf7441ed1d9c547411b7718d2c2304c097926d5.tar.bz2
scala-fdf7441ed1d9c547411b7718d2c2304c097926d5.zip
new test for #1642
Diffstat (limited to 'test/files/pos/t1642/test.scala')
-rw-r--r--test/files/pos/t1642/test.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t1642/test.scala b/test/files/pos/t1642/test.scala
new file mode 100644
index 0000000000..72e53b0c9a
--- /dev/null
+++ b/test/files/pos/t1642/test.scala
@@ -0,0 +1,6 @@
+package x
+abstract class H[A] {
+ type P <: R[P]
+ def a: P
+}
+class R[F]