mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
Decrease visibility fix is now active for exposed visibility errors #KT-11920 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
934c374030
commit
d5b9a336a3
9
idea/testData/quickfix/decreaseVisibility/exposedSuperClassProtectedInAnother.kt
vendored
Normal file
9
idea/testData/quickfix/decreaseVisibility/exposedSuperClassProtectedInAnother.kt
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
// "Make First private" "true"
|
||||
|
||||
class Other {
|
||||
internal open class Data(val x: Int)
|
||||
}
|
||||
|
||||
class Another {
|
||||
protected class First : Other.<caret>Data(42)
|
||||
}
|
||||
Reference in New Issue
Block a user