Do not show non-actual members in actual gutter #KT-27951 Fixed

This commit is contained in:
Mikhail Glukhikh
2018-11-07 11:55:12 +03:00
parent 4a64edd610
commit d7d1b0420d
6 changed files with 28 additions and 2 deletions
@@ -0,0 +1,3 @@
// !CHECK_HIGHLIGHTING
expect fun some()
@@ -0,0 +1,3 @@
actual fun doAnother(s: String) {}
fun doAnother(s: String, i: Int) {}
@@ -0,0 +1,5 @@
expect fun doSomething(s: String)
fun doSomething(s: String, i: Int) {
}
@@ -0,0 +1,3 @@
// !CHECK_HIGHLIGHTING
fun main(args: Array<String>) {}