Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
script
/
companionBlocksAndExtensions.kts
blob: abc2a0b3495a1dfb10baa100e7a813d745529ed5 [
file
]
// LANGUAGE: +CompanionBlocksAndExtensions
class
C
{
companion
{
fun foo
()
=
"O"
}
}
companion val C
.
bar
=
"K"
val result
=
C
.
foo
()
+
C
.
bar
// expected: result: OK