Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
inheritSetAndHashSet.kt
blob: 1bdc245676f8a7de5df7824c2849e4a27edab326 [
file
]
interface
A
:
Set
<
String
>
class
B
:
A
,
HashSet
<
String
>()
fun box
():
String
{
val b
=
B
()
b
.
add
(
"OK"
)
return
b
.
iterator
().
next
()
}