Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLib
/
interfaceCompanionBlockProperty.kt
blob: 61c58131231b73bb09c7a8c777a25d393e5718d9 [
file
]
// RUN_PIPELINE_TILL: FRONTEND
// LANGUAGE: +CompanionBlocksAndExtensions
interface
I
{
companion
{
val foo
=
1
const
val bar
=
2
<!
INTERFACE_COMPANION_BLOCK_VAR
!>
var
<!>
baz
=
3
val qux
by
lazy
{
4
}
}
}