Files
kotlin/idea/testData/parameterInfo/annotations/ConstructorCall.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

12 lines
185 B
Kotlin
Vendored

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