KT-4592 Parameter info shows signatures of inaccessible methods

#KT-4592 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-07-10 19:55:54 +03:00
parent d34d54ba47
commit 5f8a652a38
4 changed files with 23 additions and 36 deletions
@@ -0,0 +1,11 @@
class C {
fun foo(){}
protected fun foo(p: Int){}
}
fun f(c: C) {
c.foo(<caret>1)
}
/*
Text: (<no parameters>), Disabled: true, Strikeout: false, Green: true
*/