Create from Usage: Make extension functions/properties 'private' by default

#KT-11799 Fixed
This commit is contained in:
Alexey Sedunov
2016-08-17 14:19:04 +03:00
parent 92b0c852dd
commit 99ba340236
35 changed files with 37 additions and 35 deletions
@@ -7,6 +7,6 @@ fun test(): A<String> {
return 1(2, "2")
}
operator fun Int.invoke(i: Int, s: String): A<String> {
private operator fun Int.invoke(i: Int, s: String): A<String> {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}