8
如果我有下面的類層次結構:科特林摘要受保護的屬性
abstract class Foo<out T : Bar>() {
abstract protected val thing: T
}
class Baz : Foo<BarImpl> {
override protected val thing: T = ...
}
我得到巴茲::件事警告說:
冗餘知名度修改
這是否意味着編譯器將它視爲受保護而不需要指定,或者它必須公開?