Files
kotlin-fork/idea/testData/editor/quickDoc/OnMethodUsageWithCodeBlock.kt
T
2018-07-20 18:41:04 +03:00

36 lines
710 B
Kotlin
Vendored

/**
* Some documentation.
*
* ```
* Code block
* Second line
*
* Third line
* ```
*
* Text between code blocks.
* ```
* ```
* Text after code block.
*/
fun testMethod() {
}
class C {
}
fun test() {
<caret>testMethod(1, "value")
}
//INFO: <div class='definition'><pre><font color="808080"><i>OnMethodUsageWithCodeBlock.kt</i></font><br>public fun <b>testMethod</b>(): Unit</pre></div><div class='content'><p>Some documentation.</p>
//INFO: <pre><code>
//INFO: Code block
//INFO: Second line
//INFO:
//INFO: Third line
//INFO: </code></pre><p>Text between code blocks.</p>
//INFO: <pre><code>
//INFO: </code></pre><p>Text after code block.</p></div><table class='sections'></table>