Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
innerNested
/
innerImplicitParameter.kt
blob: 2a1e6d64c0e8ac250aa745914ec3befb883fa713 [
file
] [
log
] [
blame
]
open
class
C
<
T
>
{
inner
class
A
<
U
>(
val x
:
T
?,
val y
:
U
)
class
D
:
C
<
Nothing
>()
{
fun f
()
=
A
<
String
>(
null
,
"OK"
)
}
}
fun box
():
String
{
return
C
.
D
().
f
().
y
}