db25f568dc
If the diagnostic is already reported on the corresponding property, no need to report it again for accessors
14 lines
198 B
Kotlin
14 lines
198 B
Kotlin
trait T {
|
|
public var foo: Short
|
|
internal set
|
|
}
|
|
|
|
trait U {
|
|
public var foo: Short
|
|
protected set
|
|
}
|
|
|
|
trait V : T, U {
|
|
<!CANNOT_INFER_VISIBILITY!>override var foo: Short<!>
|
|
}
|