Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
extensions
/
extensionPropertyVsParameter.kt
blob: ae435d9192e619ef8e967f7ea81ff934050af2ea [
file
]
// FIR_IDENTICAL
val
Int
.
foo
:
Int
get
()
=
this
fun test
(
foo
:
Int
)
{
test
(
4.foo
)
test
(
foo
)
}