Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceMethodRefWithLambdaIntention
/
after.java.template
blob: 670ce55da81d69849f6b90698faa9689f4eeed94 [
file
]
class
X
{
interface
I
{
void
_
();
}
static
void
m
()
{}
{
I i
=
()
->
m
();
}
}