Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
96205cabfdb14a5aa5b1f0127871cee9c09aaef9
/
.
/
compiler
/
testData
/
ir
/
interpreter
/
elvis.kt
blob: b0e1a5ba08ebf89aad416575723d041ec46a246c [
file
]
@CompileTimeCalculation
fun getLenght
(
value
:
String
?):
Int
=
value
?.
length
?:
-
1
const
val a1
=
<!
EVALUATED
:
`5`
!>
getLenght
(
"Elvis"
)<!>
const
val a2
=
<!
EVALUATED
:
`-1`
!>
getLenght
(
null
)<!>