Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt1892.kt
blob: ae564c7fc9333fe9cb7edfd458e0346ac4bcaad3 [
file
] [
log
] [
blame
]
val
Int
.
ext
:
()
->
Int
get
()
=
{
5
}
val
Long
.
ext
:
Long
get
()
=
4.ext
().
toLong
()
//(c.kt:4)
val y
:
Long
get
()
=
10L
.
ext
fun box
():
String
=
if
(
y
==
5L
)
"OK"
else
"fail: $y"