Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
kt3930.kt
blob: b03168b7f4383405349d88266f96c0ff53997147 [
file
]
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"
}