Add "Remove argument" quick fix for TOO_MANY_ARGUMENTS
#KT-34026 Fixed #KT-34332 Fixed
This commit is contained in:
committed by
Vladimir Dolzhenko
parent
13afb2e45e
commit
d54a35ef56
@@ -0,0 +1,10 @@
|
||||
// "Remove argument" "true"
|
||||
class Bar(s: String, i: Int) {
|
||||
fun foo(s: String) {
|
||||
}
|
||||
}
|
||||
|
||||
fun main() {
|
||||
val b = Bar("2", 1)
|
||||
b.foo("a", 1<caret>)
|
||||
}
|
||||
Reference in New Issue
Block a user