Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxAgainstJava
/
functions
/
max.java
blob: aa9bb7bfe98716514dfd713b59f4eca430f9a55e [
file
]
import
java
.
util
.*;
public
class
max
{
public
static
<
T
extends
Object
&
Comparable
<?
super
T
>>
T max
(
Collection
<?
extends
T
>
coll
)
{
return
Collections
.
max
(
coll
);
}
}