Test for "KT-3769 Find usages gives no result for overrides"

#KT-3769 Obsolete
This commit is contained in:
Nikolay Krasko
2014-01-31 17:43:35 +04:00
parent 540a06d45d
commit 5f71511788
4 changed files with 28 additions and 4 deletions
@@ -0,0 +1,16 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages, skipImports
trait A {
fun foo()
}
class B: A {
override fun <caret>foo() {} // Find usages gives no results
}
fun main(a: A) {
a.foo()
}
// for KT-3769 Find usages gives no result for overrides
@@ -0,0 +1 @@
Function call (13: 7) a.foo()