KT-64988 [AA] Unwrap safe call when resolving named arguments in FirReferenceResolveHelper

^KT-64988 Fixed
This commit is contained in:
Roman Golyshev
2024-01-15 23:26:01 +01:00
committed by teamcity
parent 80cf88c9b9
commit 72a0f2023d
8 changed files with 40 additions and 2 deletions
@@ -0,0 +1,7 @@
class Foo {
fun bar(name: Int) {}
}
fun usage(foo: Foo) {
foo?.bar(na<caret>me = 10)
}