Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithConverter
/
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
}