``` interface A { fun foo(@StringRes strId: In...
# announcements
m
Copy code
interface A {
    fun foo(@StringRes strId: Int)
}

class B : A {
    // now when I use IDE to generate interface method implementation, it generates it but without an annotation
}
Is it a bug or something?