Disabled smart search for classes from library

This commit is contained in:
Valentin Kipyatkov
2016-08-26 22:19:20 +03:00
parent 6f21c07b66
commit 1183816b52
4 changed files with 29 additions and 2 deletions
@@ -0,0 +1,12 @@
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtFunction
// OPTIONS: usages
// FIND_BY_REF
fun foo(p: Pair<Int, Int>) {
p.<caret>component1()
val (x, y) = p
}
fun foo() {
val (x, y) = 1 to "a"
}
@@ -0,0 +1,3 @@
Function call 6 p.component1()
Value read 11 val (x, y) = 1 to "a"
Value read 7 val (x, y) = p