Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
defaultValues
/
kt5685.2.kt
blob: 9337adede03ac721ad4e2652b8878a1563729526 [
file
]
package
test
class
Measurements
{
inline
fun measure
(
key
:
String
,
logEvery
:
Long
=
-
1
,
divisor
:
Int
=
1
,
body
:
()
->
Unit
):
String
{
body
()
return
key
}
}