[Test] Update testdata of quickfix tests related to sealed classes

This commit is contained in:
Dmitriy Novozhilov
2021-01-14 08:54:05 +03:00
parent 7632c11745
commit 16e0c0b820
8 changed files with 18 additions and 20 deletions
@@ -1,11 +1,10 @@
// "Make '<init>' public" "false"
// "Make '<init>' internal" "false"
// ACTION: Introduce import alias
// ERROR: Cannot access '<init>': it is private in 'SealedClass'
// ERROR: This type is sealed, so it can be inherited by only its own nested classes or objects
sealed class SealedClass
fun test() {
class Test : <caret>SealedClass()
}
}