blob: 73ab8394c464477a3f562579b21487da4d3a9f52 [file] [log] [blame]
// "Change function signature to 'fun f(a: Int, x: T)'" "true"
interface A<R> {
fun f(a: Int, b: R)
}
class B<T> : A<T> {
<caret>override fun f(a: Int, x: T) {}
}