/kt45461_13.kt:7:25: warning: parameter 'foo' is never used
    fun <S : T> takeFoo(foo: Foo<in S>) {}
                        ^
/kt45461_13.kt:16:24: warning: type argument for a type parameter S has possible incompatible upper bounds: Out<String>, K (final class and interface: String, A)
    Bar<Out<String>>().takeFoo(foo) // error in 1.3.72, no error in 1.4.31
                       ^

