// "Change function signature to 'override fun f(a: Int)'" "true" trait A { fun f(a: Int) } class B : A { override fun f() {} }