Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
tryCatchFinally
/
tryCatch.2.kt
blob: ca206130b3674b309eca0e23f5be7d3e46c62c57 [
file
]
class
My
(
val value
:
Int
)
inline
fun
<
T
,
R
>
T
.
perform
(
job
:
(
T
)->
R
)
:
R
{
return
job
(
this
)
}
public
inline
fun
String
.
toInt2
()
:
Int
=
java
.
lang
.
Integer
.
parseInt
(
this
)