Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
compileKotlinAgainstJava
/
MethodWithWildcard.java
blob: 3f7c8d61e6cd4eac580415e5117a34cb0dd01e2a [
file
] [
log
] [
blame
]
package
test
;
import
java
.
util
.
Collection
;
public
class
MethodWithWildcard
<
V
>
{
public
Collection
<
V
>
method
(
Collection
<?
extends
V
>
c
)
{
return
null
;
}
}