FILE: typeParameters.kt
    public? final? interface List<out T : Any> : R|kotlin/Any| {
        public? final? operator fun get(index: Int): T

        public? final? infix fun concat(other: List<T>): List<T>

    }
    public? final typealias StringList = List<out String>
    public? final typealias AnyList = List<*>
    public? abstract class AbstractList<out T : Any> : List<T> {
        public? constructor<out T : Any>(): R|AbstractList<T>| {
            super<<implicit>>()
        }

    }
    public? final? class SomeList : AbstractList<Int> {
        public? constructor(): R|SomeList| {
            super<AbstractList<Int>>()
        }

        public? open? override fun get(index: Int): Int { LAZY_BLOCK }

        public? open? override fun concat(other: List<Int>): List<Int> { LAZY_BLOCK }

    }
