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

18 lines
395 B
Kotlin
Vendored

package test
/**
*
*
* Test function
*
* @param first Some
* @param second Other
*/
fun <caret>testFun(first: String, second: Int) = 12
//INFO: <b>internal</b> <b>fun</b> testFun(first: String, second: Int): Int <i>defined in</i> test<br/><p>Test function
//INFO: <dl><dt><b>Parameters:</b></dt><dd><code>first</code> - Some</dd><dd><code>second</code> - Other</dd></dl>
//INFO: </p>