Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
objects
/
objectInsideFun.kt
blob: d406efcd2eb3ccd1912847a6b21e1f2038032126 [
file
]
// FIR_IDENTICAL
interface
A
{
val foo
:
Int
val bar
:
String
get
()
=
""
}
fun test
(
foo
:
Int
,
bar
:
Int
)
{
object
:
A
{
override
val foo
:
Int
=
foo
+
bar
}
}