mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
KT-8794 Parameter Information should work in index expression
#KT-8794 Fixed
This commit is contained in:
9
idea/testData/parameterInfo/functionCall/SimpleConstructor.kt
vendored
Normal file
9
idea/testData/parameterInfo/functionCall/SimpleConstructor.kt
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
open class A(x: Int) {
|
||||
}
|
||||
|
||||
class B(): A(5) {
|
||||
fun m() {
|
||||
A(<caret>3)
|
||||
}
|
||||
}
|
||||
//Text: (<highlight>x: Int</highlight>), Disabled: false, Strikeout: false, Green: true
|
||||
Reference in New Issue
Block a user