Add case for private nested class/object in KotlinSafeDeleteProcessor

This commit is contained in:
Dmitry Gridin
2019-03-25 19:46:41 +07:00
parent 4495c653cb
commit ce1ec49625
5 changed files with 20 additions and 11 deletions
@@ -0,0 +1,7 @@
import TestClass.NamedObject
class TestClass{
private object NamedObject<caret> {
const val CONST = "abc"
}
}