KT-15092 Suppress inspection "use property access syntax" for some getters and fix completion for them

#KT-15092 fixed
This commit is contained in:
Simon Ogorodnik
2016-12-20 20:39:06 +03:00
parent c1538aea43
commit 0cf02dcb7b
17 changed files with 434 additions and 13 deletions
@@ -0,0 +1,9 @@
// WITH_RUNTIME
// WITH_JDK
// IS_APPLICABLE: false
import java.net.Socket
fun main(args: Array<String>) {
val s = Socket()
val stream = s.getInputStream()<caret>
}