Files
kotlin/idea/testData/parameterInfo/annotations/FunctionCall.kt
Yoshinori Isogai 11f9c055fd KT-20591: Show annotations in parameter info (#1358)
Show annotations in parameter info

 #KT-20591 Fixed
2017-10-27 22:59:04 +03:00

13 lines
195 B
Kotlin
Vendored

annotation class Fancy
private fun abc(@Fancy foo: Int) {
}
fun foo() {
abc(<caret>)
}
/*
Text: (<highlight>@Fancy foo: Int</highlight>), Disabled: false, Strikeout: false, Green: true
*/