Files
kotlin-fork/idea/idea-completion/testData/kdoc/MemberEnumEntryFQLink.kt
T
Simon Ogorodnik 1a211ee7b0 Completion for fqNames in KDoc links
Tests, also proved that KT-14432 are fixed
Added completion and tests for extension functions.
2016-11-29 14:06:54 +03:00

11 lines
118 B
Kotlin
Vendored

package z
/**
* [z.X.Y.<caret>]
*/
class X {
enum class Y { First, Second }
}
// EXIST: First
// EXIST: Second