Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
callableReference
/
classLevel.2.kt
blob: 5738150e8947428ff6ddef7adcf0c17d14e7825e [
file
]
package
test
class
A
(
val z
:
Int
)
{
fun calc
()
=
z
}
inline
fun call
(
p
:
A
,
s
:
A
.()
->
Int
):
Int
{
return
p
.
s
()
}