Files
kotlin-fork/idea/idea-completion/testData/smart/WithQualifier.kt
T
Valentin Kipyatkov bb808b5620 Created module idea-test-framework and moved classes needed for idea tests there
Moved tests for completion and their test data into module idea-completion
2015-04-14 18:53:01 +03:00

24 lines
313 B
Kotlin
Vendored

trait Foo{
fun foo1() : String
fun foo2() : Object
val prop : String
}
val foo = Foo()
fun f(p1: Foo, p2: String) {
var a : String
a = p1.<caret>
}
fun Foo.ext() : String{}
// EXIST: foo1
// ABSENT: foo2
// EXIST: prop
// EXIST: ext
// ABSENT: foo
// ABSENT: p1
// ABSENT: p2
// ABSENT: a