Files
kotlin/idea/testData/parameterInfo/annotations/ConstructorCallWithUseSite.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
285 B
Kotlin
Vendored

// WITH_RUNTIME
annotation class Fancy
class Foo(@get:Fancy val foo: Int, @param:Fancy val foo1: Int, @set:Fancy val foo2: Int)
fun bar() {
Foo(<caret>)
}
/*
Text: (<highlight>foo: Int</highlight>, @Fancy foo1: Int, foo2: Int), Disabled: false, Strikeout: false, Green: true
*/