Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt3930.kt
blob: b03168b7f4383405349d88266f96c0ff53997147 [
file
] [
log
] [
blame
]
public
abstract
class
Foo
{
var
isOpen
=
true
private
set
}
public
class
Bar
:
Foo
()
{
inner
class
Baz
{
fun call
()
{
val s
=
this
@Bar
s
.
isOpen
}
}
}
fun box
():
String
{
Bar
().
Baz
()
return
"OK"
}