Sign in
code
/
edge
/
openjdk
/
refs/heads/master
/
.
/
langtools
/
test
/
tools
/
javac
/
lambda
/
badMemberRefBytecode
/
Main.java
blob: 4c834cf37410bd62e2885674c9a93216eca1c175 [
file
] [
log
] [
blame
] [
edit
]
import
java
.
util
.
Collections
;
public
class
Main
{
public
static
void
main
(
String
[]
args
)
{
Collections
.<
String
>
sort
(
null
,
String
::
compareTo
);
}
}