summaryrefslogblamecommitdiff
path: root/test/files/neg/t2208.scala
blob: 43bb0adec5b601b9b5e17ff488a30128dffc161e (plain) (tree)
1
2
3
4
5
6
7
8







                                                                                                        
object Test  {
	class A

	class B[X]
	type Alias[X <: A] = B[X]

	class C extends Alias[Any]   // not ok, normalisation should check bounds before expanding Alias
}