Pending test for #654

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@14471 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
maier 2008-03-31 18:27:57 +00:00
parent ddb1108b15
commit 3c7f033ec6
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
object Test {
class Foo[T]
type C[T] = Foo[_ <: T]
val a: C[AnyRef] = new Foo[AnyRef]
}