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

        public abstract infix fun concat(other: R|List<T>|): R|List<T>|

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

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

        public final override fun get(index: R|kotlin/Int|): R|kotlin/Int| {
            ^get Int(42)
        }

        public final override fun concat(other: R|List<kotlin/Int>|): R|List<kotlin/Int>| {
            ^concat this#
        }

    }
