extend test for code cleanup with changing visibility from private to internal for declarations, which are used outside of their file.

This commit is contained in:
Michael Nedzelsky
2015-09-10 16:35:02 +03:00
parent 93dfaf72f7
commit 9fd968d59e
5 changed files with 28 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
private fun ff() {}
private val valX = 10
private var varX = 20
var varY = 30
private set(value: Int) {}