Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
generics
/
approximationOfBoundedProjection.fir.kt
blob: bac68c0eb439ba7975861006519b1494e1b438ae [
file
]
// ISSUE: KT-21463
interface
BoxWrapper
<
T
,
B
:
Box
<
T
>>
{
val box
:
B
}
interface
Box
<
T
>
{
val item
:
T
}
fun
<
T
>
getBoxWrapper
():
BoxWrapper
<
T
,
*>
=
null
!!
class
Element
val box
:
Box
<
Element
>
=
getBoxWrapper
<
Element
>().
box