blob: bd28a63efea79df99ba718eb100738515bbb265d [file] [log] [blame]
class X {
companion object {
fun String.f(): X = X()
fun g(): X = X()
}
}
fun foo(): X {
return <caret>
}
// ABSENT: f
// EXIST: { lookupString:"g", itemText:"X.g", tailText:"() (<root>)" }