More tests for ChangeVisibilityModifierIntention

(cherry picked from commit e7cdba7)
This commit is contained in:
Nikolay Krasko
2016-08-31 19:52:55 +03:00
committed by Nikolay Krasko
parent 1e9db3c23e
commit 28d187ca1a
6 changed files with 37 additions and 1 deletions
@@ -0,0 +1,5 @@
annotation class Small(val i: Int, val s: String)
@Sma<caret>ll(1, "2") fun test1() {
}
@@ -0,0 +1,5 @@
annotation class Small(val i: Int, val s: String)
@Sma<caret>ll(1, "2") private fun test1() {
}
@@ -0,0 +1,5 @@
annotation class Small(val i: Int, val s: String)
@Small(<caret>1, "2") fun test1() {
}
@@ -0,0 +1,5 @@
annotation class Small(val i: Int, val s: String)
@Small(<caret>1, "2") private fun test1() {
}