Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
extensions
/
variableInvoke.fir.kt
blob: a940855855a00ac465e257953bfadcf563f782b9 [
file
]
class
A
(
foo
:
Int
.()
->
Unit
)
{
init
{
4.foo
()
}
}
fun test
(
foo
:
Int
.(
String
)
->
Unit
)
{
4.foo
(
""
)
4.foo
(<!
NO_VALUE_FOR_PARAMETER
!>
p1
=
""
)<!>
4.foo
(<!
NAMED_ARGUMENTS_NOT_ALLOWED
!>
p2
<!>
=
""
)
}