KT-12793 Code completion doesn't suggest abstract protected extension methods

#KT-12793 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-07-22 17:54:01 +03:00
parent 88ad00b0bc
commit 6ff91d1399
4 changed files with 24 additions and 1 deletions
@@ -0,0 +1,9 @@
abstract class ProtectedTest {
fun foo() {
"".<caret>
}
abstract protected fun String.bar()
}
// EXIST: bar