/** * Some documentation. * * ``` * Code block * Second line * * Third line * ``` * * Text between code blocks. * ``` * ``` * Text after code block. */ fun testMethod() { } class C { } fun test() { testMethod(1, "value") } //INFO:
public fun testMethod(): Unit defined in root package in file OnMethodUsageWithCodeBlock.kt

Some documentation.

//INFO:

//INFO: Code block
//INFO:     Second line
//INFO:
//INFO: Third line
//INFO: 

Text between code blocks.

//INFO:

//INFO: 

Text after code block.