IDEA-239649 Increase language level fix is not suggested for records

GitOrigin-RevId: 19843f9e1f610f7536b7e591012ec3eb64af6c43
This commit is contained in:
Tagir Valeev
2020-04-30 13:17:55 +07:00
committed by intellij-monorepo-bot
parent 642e4911cd
commit 618696f129
13 changed files with 175 additions and 60 deletions

View File

@@ -0,0 +1,9 @@
class X {
interface Fn {
void test(String s);
}
void test() {
Fn fn = (v<caret>ar s) -> System.out.println(s);
}
}