Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
bridges
/
overrideAbstractProperty.kt
blob: ec01cfced5c2ad91f5c34daf853cdb564ab86638 [
file
]
public
abstract
class
AbstractClass
<
T
>
{
public
abstract
val some
:
T
}
public
class
Class
:
AbstractClass
<
String
>()
{
public
override
val some
:
String
get
()
=
"OK"
}
fun box
():
String
=
Class
().
some