mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
22 lines
492 B
Kotlin
Vendored
22 lines
492 B
Kotlin
Vendored
/**
|
|
* @see C
|
|
* @see D
|
|
* @see <a href="http://kotl.in">kotlin</a>
|
|
*/
|
|
fun testMethod() {
|
|
|
|
}
|
|
|
|
class C {
|
|
}
|
|
|
|
class D {
|
|
}
|
|
|
|
fun test() {
|
|
<caret>testMethod(1, "value")
|
|
}
|
|
|
|
//INFO: <pre><b>public</b> <b>fun</b> testMethod(): Unit <i>defined in</i> root package <i>in file</i> OnMethodUsageWithSee.kt</pre><br/>
|
|
//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>, <a href="http://kotl.in">kotlin</a></DD></DL></DD>
|