Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
kt3579.kt
blob: 64514c50d9b39a420ffbdd09e84fdeb2ef8fb408 [
file
]
open
class
Persistent
(
val p
:
String
)
interface
Hierarchy
<
T
:
Persistent
>
where
T
:
Hierarchy
<
T
>
class
Location
():
Persistent
(
"OK"
),
Hierarchy
<
Location
>
fun box
():
String
{
return
Location
().
p
}