Files
kotlin-fork/idea/testData/editor/quickDoc/OnFunctionDeclarationWithPackage.kt
T
Nikolay Krasko 141c544775 KT-3729 Quick documentation support
#KT-3729 Fixed
2013-07-04 20:48:26 +04:00

15 lines
384 B
Kotlin

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: jet.String, second: jet.Int): jet.Int <i>defined in</i> test<br/><p>Test function<br/><br/><br/><b>@param</b> - <i>first</i> - Some<br/><b>@param</b> - <i>second</i> - Other<br/></p>