Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJvmBackend
/
scripts
/
interfaceCapturesProperty.kts
blob: 12ddaa10b93bf3f1636c9410c4dd9165abbd3ed1 [
file
]
// RENDER_ALL_DIAGNOSTICS_FULL_TEXT
fun foo
()
=
B
().
bar
()
val life
=
42
<!
SCRIPT_CAPTURING_INTERFACE
!>
interface
A
{
val x
get
()
=
life
}<!>
class
B
:
A
{
fun bar
()
=
x
}