Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
class
/
StarProjection.kt
blob: 1e374efd52445f3d1dc2be30efa99f087cc52f15 [
file
] [
log
] [
blame
]
package
test
open
class
K
<
out
T
:
K
<
T
>>
{
fun foo
(
k
:
K
<*>)
{}
fun foo
():
K
<*>
=
null
!!
}
class
Sub
:
K
<
K
<*>>()
fun bar
(
k
:
K
<*>)
{}