Files
kotlin-fork/idea/testData/editor/quickDoc/OnMethodUsageWithSee.kt
T
2015-04-21 15:36:37 +02:00

21 lines
370 B
Kotlin
Vendored

/**
* @see C
* @see D
*/
fun testMethod() {
}
class C {
}
class D {
}
fun test() {
<caret>testMethod(1, "value")
}
//INFO: <b>internal</b> <b>fun</b> testMethod(): Unit <i>defined in</i> root package<br/><p>
//INFO: <DD><DL><DT><b>See Also:</b><DD><a href="psi_element://C"><code>C</code></a>, <a href="psi_element://D"><code>D</code></a></DD></DL></DD></p>