anonym -> lambda: disable for strictfp

This commit is contained in:
Anna Kozlova
2017-08-07 06:37:45 +02:00
parent 06e2de45fd
commit 873df28d36
2 changed files with 15 additions and 0 deletions
@@ -0,0 +1,14 @@
// "Replace with lambda" "false"
class Test {
interface I {
void m();
}
{
I i = new I<caret>() {
public strictfp void m() {
//do smth
}
}
}
}