mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
29 lines
404 B
Kotlin
Vendored
29 lines
404 B
Kotlin
Vendored
/**
|
|
* Some documentation.
|
|
*
|
|
* ```
|
|
* Code block
|
|
* Second line
|
|
*
|
|
* Third line
|
|
* ```
|
|
*/
|
|
fun testMethod() {
|
|
|
|
}
|
|
|
|
class C {
|
|
}
|
|
|
|
fun test() {
|
|
<caret>testMethod(1, "value")
|
|
}
|
|
|
|
//INFO: <b>public</b> <b>fun</b> testMethod(): Unit <i>defined in</i> root package<p>Some documentation.</p>
|
|
//INFO: <pre><code>
|
|
//INFO: Code block
|
|
//INFO: Second line
|
|
//INFO:
|
|
//INFO: Third line
|
|
//INFO: </code><pre>
|