Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
ir
/
interpreter
/
reference
/
functionReferenceCallViaReflection.kt
blob: ada9c83d046b2e1bda5b481f81f5a36bdcb9e037 [
file
]
// IGNORE_BACKEND_K1: ANY
@CompileTimeCalculation
class
A
(
val a
:
Int
)
{
fun foo
():
Int
{
return
a
}
}
const
val functionCall
=
<!
EVALUATED
:
`1`
!>
A
::
foo
.
call
(
A
(
1
))<!>
const
val functionWithReceiverCall
=
<!
EVALUATED
:
`2`
!>
A
(
2
)::
foo
.
call
()<!>