Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fe0f055c5c4e6ededc6378ef6df3f28ee841978
/
.
/
compiler
/
visualizer
/
testData
/
uncommonCases
/
testFiles
/
receiver.kt
blob: 1e90618325cfa40ecd4f8d16351f31bb8291b8e6 [
file
]
fun
Int
.
addOne
():
Int
{
return
this
+
1
}
val
Int
.
repeat
:
Int
get
()
=
this
fun main
()
{
val i
=
2
i
.
addOne
()
val p
=
i
.
repeat
*
2
}