Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt2477.kt
blob: 8f45431717c4ad3acae46fc9f877cbcd141a5795 [
file
] [
log
] [
blame
]
package
test
interface
A
{
public
val c
:
String
get
()
=
"OK"
}
interface
B
{
private
val c
:
String
get
()
=
"FAIL"
}
open
class
C
{
private
val c
:
String
=
"FAIL"
}
open
class
D
:
C
(),
A
,
B
{
val b
=
c
}
fun box
()
:
String
{
return
D
().
c
}