Disabled smart search for classes from library
This commit is contained in:
+12
@@ -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"
|
||||
}
|
||||
+3
@@ -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
|
||||
Reference in New Issue
Block a user