Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
boxAgainstJava
/
property
/
referenceToJavaFieldViaBridge.kt
blob: 56dea58111035645646fb79828af688e7b8685ef [
file
] [
log
] [
blame
]
// FILE: test/D.java
package
test
;
public
class
D
{
protected
String
field
=
"OK"
;
}
// FILE: 1.kt
import
test
.
D
class
A
:
D
()
{
fun a
():
String
{
return
{
field
!!}()
}
}
fun box
():
String
{
return
A
().
a
()
}