Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
resolve
/
regressions
/
objectInsideFun.resolve
blob: f8cf8f168022f07bff9cde67f76b15503e7290d9 [
file
]
interface
A
{
~
from
-
interface
~
val foo
:
Int
}
fun test
(~
param
~
foo
:
Int
)
{
object
:
A
{
~
property
~
override
val foo
:
Int
=
`param`
foo
}
}