Resolve generic bounds of all classes prior to supertypes

This commit is contained in:
Alexander Udalov
2013-12-03 21:17:43 +04:00
parent 028274b934
commit 7af72b98fe
3 changed files with 17 additions and 2 deletions
@@ -0,0 +1,7 @@
// Tests that generic bounds in the object supertype are resolved prior to the supertype itself
object O : Tr<V<*>>
trait Tr<T>
class V<out S>